Premium Employer

i

This company page is being actively managed by Infosys Team. If you also belong to the team, you can get access from here

Infosys Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Infosys QA Test Engineer Interview Questions and Answers

Updated 22 Sep 2024

7 Interview questions

A QA Test Engineer was asked
Q. How do you handle frames?
Ans. 

Frames are used to divide a web page into multiple sections. They can be handled using various methods.

  • Use switchTo() method to switch to the frame

  • Use defaultContent() method to switch back to the main content

  • Use frame() method to locate the frame by index, name, or WebElement

  • Use parentFrame() method to switch to the parent frame

  • Use getWindowHandle() method to get the handle of the current window

A QA Test Engineer was asked
Q. How do you handle drop-down menus in testing?
Ans. 

To handle drop-down, identify the element, select the option, and verify the selection.

  • Identify the drop-down element using locators like ID, class, or XPath.

  • Use Selenium's Select class to select the desired option.

  • Verify the selection using assertions or by getting the selected option's text.

  • Handle dynamic drop-downs using wait statements or JavaScriptExecutor.

  • Test for edge cases like empty options or duplicate v...

QA Test Engineer Interview Questions Asked at Other Companies

Q1. Selenium web driver What is POM file why we are using it Xpath Ty ... read more
Q2. If you don't have a computer or IT background, which coding langu ... read more
Q3. What is software testing and difference between manual and softwa ... read more
asked in Informatica
Q4. Can a static method be overloaded and overridden?
Q5. SQL question: 1. Find the 2nd top salary 2. Write inner join quer ... read more
A QA Test Engineer was asked
Q. How can you handle windows using the getWindowHandles command with code?
Ans. 

The getWindowHandles command retrieves all open window handles for switching between them in Selenium.

  • Use driver.getWindowHandles() to get a set of all window handles.

  • Convert the set to a list for easier access: List<String> windowHandles = new ArrayList<>(driver.getWindowHandles());

  • Switch to a specific window using driver.switchTo().window(windowHandles.get(index));

  • Close a window using driver.close() ...

A QA Test Engineer was asked
Q. Tell me about your automation framework.
Ans. 

My automation framework is designed for efficient testing, scalability, and maintainability using modern tools and best practices.

  • Utilizes Selenium WebDriver for browser automation, enabling cross-browser testing.

  • Incorporates TestNG for test management, allowing parallel execution and detailed reporting.

  • Employs Page Object Model (POM) to enhance code reusability and maintainability.

  • Integrates with CI/CD tools like...

🔥 Asked by recruiter 3 times
A QA Test Engineer was asked
Q. What are the basic concepts of OOP?
Ans. 

OOP is a programming paradigm based on objects, encapsulating data and behavior for better code organization and reuse.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

  • Inheritance: Mechanism to create a new class based on an existing class, inheriting its properties (e.g., a 'Dog' class inheriting from an 'Animal' class).

  • Polymorphism: Ability to present the same int...

A QA Test Engineer was asked
Q. Write a basic SQL query.
Ans. 

Basic SQL queries are essential for retrieving and manipulating data in relational databases.

  • SELECT statement: Used to select data from a database. Example: SELECT * FROM users;

  • WHERE clause: Filters records based on specified conditions. Example: SELECT * FROM users WHERE age > 30;

  • JOIN operations: Combines rows from two or more tables based on a related column. Example: SELECT orders.id, users.name FROM orders ...

A QA Test Engineer was asked
Q. String concept in java
Ans. 

String is a sequence of characters in Java.

  • Strings are immutable in Java.

  • String class provides various methods for manipulating strings.

  • Strings can be concatenated using the '+' operator.

  • Strings can be compared using the 'equals()' method.

  • Strings can be converted to character arrays using the 'toCharArray()' method.

Are these interview questions helpful?

Infosys QA Test Engineer Interview Experiences

3 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Focus on basics and check your oops concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics

Interview Questionnaire 

10 Questions

  • Q1. About your automation framework
  • Ans. 

    My automation framework is designed for efficient testing, scalability, and maintainability using modern tools and best practices.

    • Utilizes Selenium WebDriver for browser automation, enabling cross-browser testing.

    • Incorporates TestNG for test management, allowing parallel execution and detailed reporting.

    • Employs Page Object Model (POM) to enhance code reusability and maintainability.

    • Integrates with CI/CD tools like Jenk...

  • Answered by AI
  • Q2. How to handle drop-down
  • Ans. 

    To handle drop-down, identify the element, select the option, and verify the selection.

    • Identify the drop-down element using locators like ID, class, or XPath.

    • Use Selenium's Select class to select the desired option.

    • Verify the selection using assertions or by getting the selected option's text.

    • Handle dynamic drop-downs using wait statements or JavaScriptExecutor.

    • Test for edge cases like empty options or duplicate values...

  • Answered by AI
  • Q3. How to handle frame
  • Ans. 

    Frames are used to divide a web page into multiple sections. They can be handled using various methods.

    • Use switchTo() method to switch to the frame

    • Use defaultContent() method to switch back to the main content

    • Use frame() method to locate the frame by index, name, or WebElement

    • Use parentFrame() method to switch to the parent frame

    • Use getWindowHandle() method to get the handle of the current window

  • Answered by AI
  • Q4. Basics concept of oop
  • Ans. 

    OOP is a programming paradigm based on objects, encapsulating data and behavior for better code organization and reuse.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism to create a new class based on an existing class, inheriting its properties (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the same interfac...

  • Answered by AI
  • Q5. Basic SQL querry
  • Ans. 

    Basic SQL queries are essential for retrieving and manipulating data in relational databases.

    • SELECT statement: Used to select data from a database. Example: SELECT * FROM users;

    • WHERE clause: Filters records based on specified conditions. Example: SELECT * FROM users WHERE age > 30;

    • JOIN operations: Combines rows from two or more tables based on a related column. Example: SELECT orders.id, users.name FROM orders JOIN ...

  • Answered by AI
  • Q6. Question on reportNG and extent report
  • Q7. Question on testNG annotation
  • Q8. Question on dataprovider annotation
  • Q9. Ask me how you can handle windows using getwindowhandles command with code
  • Ans. 

    The getWindowHandles command retrieves all open window handles for switching between them in Selenium.

    • Use driver.getWindowHandles() to get a set of all window handles.

    • Convert the set to a list for easier access: List<String> windowHandles = new ArrayList<>(driver.getWindowHandles());

    • Switch to a specific window using driver.switchTo().window(windowHandles.get(index));

    • Close a window using driver.close() and s...

  • Answered by AI
  • Q10. String concept in java
  • Ans. 

    String is a sequence of characters in Java.

    • Strings are immutable in Java.

    • String class provides various methods for manipulating strings.

    • Strings can be concatenated using the '+' operator.

    • Strings can be compared using the 'equals()' method.

    • Strings can be converted to character arrays using the 'toCharArray()' method.

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Selenium framework, core Java, SQL, Linux commands , maven , Jenkins , testNG
  • Q2. Questions on automation framework

What people are saying about Infosys

View All
yedabhai
2d
works at
Hyperpure
Are we not even safe in our own workplaces?
An Infosys employee was arrested for secretly recording women in the office washroom. Over 30 videos were found on his phone. This isn't just shocking, it's horrifying. Offices are meant to be safe, respectful spaces. 🙎 When will companies truly prioritize safety and surveillance in all corners, not just the visible ones?
FeedCard Image
Got a question about Infosys?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions : 1)oops concepts 2)plsql cursors, triggers, procedures 3)quick sort algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your resume. None of the questions were asked out of resume.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself
  • Q2. Reverse string
  • Ans. 

    Reversing a string involves rearranging its characters in the opposite order, which can be done using various methods.

    • Use built-in functions: In Python, you can reverse a string with slicing: `reversed_string = original_string[::-1]`.

    • Iterative approach: Loop through the string from the end to the beginning and build a new string.

    • Using recursion: Define a function that calls itself with a smaller substring until it reac...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Average level interview

I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 4 interview rounds.

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 - Assignment 

MCQ's and Coding Problem - 1 related with Java, RDBMS, JS

Round 3 - Technical 

(1 Question)

  • Q1. Basic Question on Java and Project related questions
Round 4 - HR 

(1 Question)

  • Q1. Introduction, Discussion regarding the roles and salary negotiation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with basics and be confident with the answers.

I applied via Recruitment Consultant and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. String builder and string buffer When we create Arrays and when we create linked lists Treeset in Java Java 8 features Static keyword Dynamic method dispatch How to make a immutable cla...
  • Ans. 

    Questions related to Java programming language concepts and features.

    • StringBuilder and StringBuffer are used for efficient string manipulation.

    • Arrays are fixed in size while linked lists can grow dynamically.

    • TreeSet is a sorted set implementation in Java.

    • Java 8 introduced lambda expressions, streams, and functional interfaces.

    • Static keyword is used to create class-level variables and methods.

    • Dynamic method dispatch is ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and rock!

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Company hostory

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication skills
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2022. There were 4 interview rounds.

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 - Aptitude Test 

Aptitude and coding test

Round 3 - Group Discussion 

Generic topics, time 20 to 30 min

Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Joined the company as a fresher through campus placement in 2020. The hiring process was as follows:

Round 1: Aptitude and Coding test. Generic aptitude test - Quant and Logical reasoning. 1 coding question, you can solve in language of your choice.

Round 2: GD

Round 3: HR interview.

I applied via LinkedIn and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. JS Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Basics in your skillset

Infosys Interview FAQs

How many rounds are there in Infosys QA Test Engineer interview?
Infosys interview process usually has 1 rounds. The most common rounds in the Infosys interview process are Coding Test.
What are the top questions asked in Infosys QA Test Engineer interview?

Some of the top questions asked at the Infosys QA Test Engineer interview -

  1. Ask me how you can handle windows using getwindowhandles command with c...read more
  2. How to handle drop-do...read more
  3. About your automation framewo...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
LTIMindtree Interview Questions
3.7
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
View all
Infosys QA Test Engineer Salary
based on 125 salaries
₹2.8 L/yr - ₹6.6 L/yr
9% less than the average QA Test Engineer Salary in India
View more details

Infosys QA Test Engineer Reviews and Ratings

based on 7 reviews

3.0/5

Rating in categories

2.3

Skill development

3.4

Work-life balance

1.9

Salary

3.5

Job security

3.0

Company culture

2.1

Promotions

2.7

Work satisfaction

Explore 7 Reviews and Ratings
Technology Analyst
55.8k salaries
unlock blur

₹4.8 L/yr - ₹11.1 L/yr

Senior Systems Engineer
53.8k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35.1k salaries
unlock blur

₹9.4 L/yr - ₹16.4 L/yr

System Engineer
32.5k salaries
unlock blur

₹2.4 L/yr - ₹5.3 L/yr

Senior Associate Consultant
31.1k salaries
unlock blur

₹8.1 L/yr - ₹15 L/yr

Explore more salaries
Compare Infosys with

TCS

3.6
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview