Upload Button Icon Add office photos

Filter interviews by

Guidepoint Qa Automation Testing Engineer Interview Questions and Answers for Experienced

Updated 24 Apr 2024

Guidepoint Qa Automation Testing Engineer Interview Experiences for Experienced

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic HR Questions
Round 2 - Coding Test 

Basic coding of Java, Selenium, Postman(query params, Path Params) and SQL quesries

Round 3 - Technical 

(2 Questions)

  • Q1. Core Java OOPS concepts, Collections in Java, Basic Selenium and Java questions, 2 coding questions
  • Q2. Sum of all positive integers from an array
  • Ans. 

    Sum all positive integers from an array of strings.

    • Convert each string to integer and check if it is positive

    • Add all positive integers together to get the sum

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn the basics and do well

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. What are oops concept?
  • Ans. 

    OOPs concepts are the fundamental principles of Object-Oriented Programming.

    • Encapsulation - binding data and functions together

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on multiple forms

    • Abstraction - hiding implementation details from users

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. String reverse program
  • Ans. 

    A program to reverse a given string.

    • Iterate through the string from the end and append each character to a new string.

    • Use built-in functions like reverse() or StringBuilder in Java.

    • In Python, strings are immutable, so convert the string to a list, reverse it, and then join it back to a string.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for SunSystem Infotech Qa Automation Testing Engineer interview:
  • java
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple round not as much difficult

Round 2 - Technical 

(1 Question)

  • Q1. Question related to selenium and java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic python coding
  • Q2. Selenium, sql, python coding
Round 2 - Technical 

(2 Questions)

  • Q1. Mid level questions on selenium
  • Q2. SQL and python coding
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. List and tulples, pytest mark and fixtures, pom, explicitwait, validating login scenario, reverse number in python, is enabled, is displayed, exception handling, method overriding, api testing, html runner...

I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts,few coding questions
Round 2 - Aptitude Test 

Basic aptitude questions

Interview Preparation Tips

Topics to prepare for Finastra Qa Automation Testing Engineer interview:
  • OOPS
  • Programming
  • Coding
Interview preparation tips for other job seekers - All the best guys🥳🥂 keep trying and dont loose the hope
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic java, selenium, and automation framework, testng annotations questions
Round 2 - HR 

(1 Question)

  • Q1. Normal questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(14 Questions)

  • Q1. What types of locators you used in ur project.
  • Ans. 

    I have used various types of locators in my project, including ID, name, class name, xpath, and CSS selectors.

    • ID locator: Used to locate elements by their unique ID attribute.

    • Name locator: Used to locate elements by their name attribute.

    • Class name locator: Used to locate elements by their class name attribute.

    • XPath locator: Used to locate elements using XPath expressions.

    • CSS selector locator: Used to locate elements us

  • Answered by AI
  • Q2. Absolute and relative xpath differences
  • Ans. 

    Absolute xpath starts from the root node, while relative xpath starts from any node.

    • Absolute xpath starts with a single forward slash (/) and is more brittle as any changes in the structure of the DOM can break the xpath.

    • Relative xpath starts with a double forward slash (//) and is more flexible as it can start from any node in the DOM.

    • Absolute xpath is faster than relative xpath as it directly navigates to the element...

  • Answered by AI
  • Q3. Write a xpath on the traversing xpath.
  • Ans. 

    Traversing XPath is used to navigate through the elements in a structured way.

    • Use '//' to select all elements in the document, regardless of their location

    • Use '/' to select direct child elements

    • Use '[@attribute='value']' to select elements based on their attribute value

    • Use 'following-sibling::' to select siblings that come after the current element

    • Use 'preceding-sibling::' to select siblings that come before the curren

  • Answered by AI
  • Q4. Keywords on feature file.
  • Ans. 

    Keywords on feature file are used to define the behavior of the scenarios in BDD testing.

    • Keywords like Given, When, Then, And, But are used to structure the scenarios

    • Keywords help in writing clear and concise test cases

    • Examples: Given I am on the login page, When I enter valid credentials, Then I should be logged in

  • Answered by AI
  • Q5. Write one step definition by seeing the feature file.
  • Ans. 

    The step definition should match the steps in the feature file for automation testing.

    • Read the step from the feature file

    • Create a corresponding step definition in the automation testing framework

    • Ensure the step definition accurately performs the desired action

  • Answered by AI
  • Q6. What are the types of hooks present in bdd.
  • Ans. 

    Types of hooks in BDD include Before, After, BeforeStep, AfterStep, BeforeFeature, AfterFeature, BeforeScenario, AfterScenario.

    • Before - runs before each scenario

    • After - runs after each scenario

    • BeforeStep - runs before each step in a scenario

    • AfterStep - runs after each step in a scenario

    • BeforeFeature - runs before each feature

    • AfterFeature - runs after each feature

    • BeforeScenario - runs before each scenario

    • AfterScenario -

  • Answered by AI
  • Q7. What is method overloading and overriding concept.
  • Ans. 

    Method overloading is when multiple methods in the same class have the same name but different parameters. Method overriding is when a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Method overloading involves creating multiple methods in the same class with the same name but different parameters.

    • Method overriding occurs when a subclass provides a specific implementat...

  • Answered by AI
  • Q8. WAP to swap the two integer without using third variable.
  • Ans. 

    Swapping two integers without using a third variable in a programming language.

    • Use bitwise XOR operation to swap two integers without using a third variable.

    • Example: int a = 5, b = 10; a = a ^ b; b = a ^ b; a = a ^ b; // Now a = 10, b = 5

  • Answered by AI
  • Q9. WAP to print the occurrence of the character present in the given string.
  • Ans. 

    The program will count and print the occurrence of each character in a given string.

    • Create an array to store the count of each character (initialize with 0)

    • Iterate through the string and increment the count of each character in the array

    • Print the count of each character along with the character itself

  • Answered by AI
  • Q10. If you are not meeting the requirement in your testcase then what the documentation format you follow.
  • Ans. 

    If not meeting requirement in testcase, follow documentation format like updating test case steps, expected results, and defect details.

    • Update the test case steps to accurately reflect the actual steps taken during testing

    • Update the expected results to reflect the actual results observed during testing

    • Document the defect details including steps to reproduce, screenshots, and any additional information

    • Assign a severity ...

  • Answered by AI
  • Q11. What are the technologies you used in your testcases.
  • Ans. 

    I have used technologies like Selenium, JUnit, TestNG, Cucumber, and Jenkins in my testcases.

    • Selenium

    • JUnit

    • TestNG

    • Cucumber

    • Jenkins

  • Answered by AI
  • Q12. What is boundary value analysis.
  • Ans. 

    Boundary value analysis is a software testing technique used to identify errors at boundaries of input ranges.

    • Focuses on testing at the boundaries of input ranges

    • Helps identify errors that occur at the boundaries

    • Tests values at the lower and upper limits of valid ranges

    • Reduces the number of test cases needed for thorough testing

  • Answered by AI
  • Q13. How to create job for CI/CD in jenkins.
  • Ans. 

    To create a job for CI/CD in Jenkins, you can use the Jenkins interface to configure a new job with the necessary build and deployment steps.

    • Navigate to Jenkins dashboard and click on 'New Item' to create a new job

    • Select the type of job you want to create (Freestyle project, Pipeline, etc.)

    • Configure the job settings such as source code repository, build triggers, build steps, and post-build actions

    • Set up the job to be ...

  • Answered by AI
  • Q14. Can you tell me how to fetch data from table row dynamically .
  • Ans. 

    To fetch data from a table row dynamically, use a unique identifier to locate the row and extract the data.

    • Identify a unique identifier for the row, such as an ID or class name

    • Use a query selector or XPath to locate the row based on the identifier

    • Extract the data from the row using appropriate methods or functions

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explanation About BDD Framework
  • Ans. 

    BDD (Behavior Driven Development) framework is a software development approach that focuses on collaboration between developers, QA, and non-technical stakeholders.

    • BDD involves writing scenarios in plain language using Gherkin syntax (Given, When, Then)

    • Scenarios are written from the perspective of an end user's behavior

    • BDD helps in improving communication and understanding between team members

    • Popular BDD frameworks inc

  • Answered by AI
  • Q2. Details about projects worked on
  • Ans. 

    I have worked on various projects involving automation testing of web applications using Selenium and API testing using Postman.

    • Developed automated test scripts using Selenium WebDriver for regression testing of web applications

    • Performed API testing using Postman to validate response data and functionality

    • Integrated automation tests into CI/CD pipelines for continuous testing and deployment

    • Collaborated with developers ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Questions on Rest Assured
  • Q2. Manual Testing Process
  • Ans. 

    Manual testing process involves executing test cases manually without the use of automation tools.

    • Creating test cases based on requirements

    • Executing test cases manually

    • Recording test results

    • Reporting defects

    • Re-testing fixed defects

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Package Discussion
  • Q2. Offer Letter Negotiation

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Basic API Questions , Behavioral questions , SQL Questions
  • Q2. Write down the update and select queries
  • Ans. 

    Update and select queries are used in database operations to modify and retrieve data.

    • Update query is used to modify existing data in a database table, for example: UPDATE table_name SET column1 = value1 WHERE condition;

    • Select query is used to retrieve data from a database table, for example: SELECT column1, column2 FROM table_name WHERE condition;

  • Answered by AI
  • Q3. Scenario based functional testing questions
  • Q4. What are the Response codes of API
  • Ans. 

    Response codes of API are standardized status codes returned by a server in response to a client's request.

    • 200 - OK: Request was successful

    • 400 - Bad Request: Invalid input or missing parameters

    • 401 - Unauthorized: Authentication required

    • 404 - Not Found: Resource not found

    • 500 - Internal Server Error: Server-side issue

  • Answered by AI
  • Q5. What is API Testing and its purpose
  • Ans. 

    API Testing is testing the application programming interface to ensure it meets functionality, reliability, performance, and security requirements.

    • API Testing involves testing the communication between different software systems through APIs.

    • It ensures that the API functions correctly, returns the expected results, and handles errors gracefully.

    • API Testing can be done at different levels such as unit testing, integrati...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic concepts clearly.

Skills evaluated in this interview

Guidepoint Interview FAQs

How many rounds are there in Guidepoint Qa Automation Testing Engineer interview for experienced candidates?
Guidepoint interview process for experienced candidates usually has 3 rounds. The most common rounds in the Guidepoint interview process for experienced candidates are HR, Coding Test and Technical.
What are the top questions asked in Guidepoint Qa Automation Testing Engineer interview for experienced candidates?

Some of the top questions asked at the Guidepoint Qa Automation Testing Engineer interview for experienced candidates -

  1. sum of all positive integers from an ar...read more
  2. Core Java OOPS concepts, Collections in Java, Basic Selenium and Java questions...read more

Tell us how to improve this page.

Guidepoint Qa Automation Testing Engineer Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
View more

Guidepoint Qa Automation Testing Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

2.0

Salary

4.0

Job security

3.0

Company culture

1.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Client Service Associate
10 salaries
unlock blur

₹3.1 L/yr - ₹10 L/yr

Senior Analyst
9 salaries
unlock blur

₹41 L/yr - ₹50 L/yr

Research Associate
7 salaries
unlock blur

₹9.1 L/yr - ₹10 L/yr

Associate
5 salaries
unlock blur

₹9.8 L/yr - ₹12 L/yr

Software Engineer
3 salaries
unlock blur

₹20 L/yr - ₹21 L/yr

Explore more salaries
Compare Guidepoint with

Quantzig

4.8
Compare

AXIS MY INDIA

3.3
Compare

GfK MODE

3.3
Compare

Edward Food Research and Analysis Centre

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview