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 Internshala and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. They aske qustn relateed to resume
  • Ans. 

    Discussing my resume highlights my skills, experiences, and projects relevant to the software engineering role.

    • Experience with Java and Python in developing web applications.

    • Led a team project that improved application performance by 30%.

    • Contributed to open-source projects, enhancing my coding skills and collaboration.

    • Completed an internship at XYZ Corp, where I developed a feature that increased user engagement.

  • Answered by AI
  • Q2. What made you choose this company

Interview Preparation Tips

Interview preparation tips for other job seekers - always be prepared with what you have wrote in your resume I will suggest..bcoz there is no other qustn than basics

Interview Questionnaire 

1 Question

  • Q1. In 5 programs without effecting one by one how can you debug a particular program and how can you know tha program is calling in debug
  • Ans. 

    To debug a particular program without affecting others, use breakpoints and step through the code.

    • Set a breakpoint in the program you want to debug

    • Step through the code using a debugger to identify the issue

    • Use logging statements to track the flow of the program

    • Check the call stack to see which functions are being called

    • Use conditional breakpoints to stop the program at specific points

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

The first round was an aptitude test with questions ranging from basic mathematical concepts to logical/analytical questions. English was also included in the test. The difficulty was medium and I was able to solve 70-80% of the questions.

Round 2 - Coding Test 

Two coding questions were the part of the test. I was supposed to solve and pass all the test cases for both the questions. The coding questions tested my knowledge in the field of arrays, loops and pointers. I was able to solve one and partially solve another.

Round 3 - Technical 

(1 Question)

  • Q1. The interview was a mixture of both HR as well as Technical. I was asked decent questions and tested my knowledge in the fundamentals of programming.

Interview Preparation Tips

Topics to prepare for LTIMindtree Software Engineer interview:
  • Python
  • Java
  • Full Stack
Interview preparation tips for other job seekers - Make sure that you are good in the fundamentals of Programming(if you are looking for an IT job) or just be good at a particular thing which perfectly suites your current necessities and also helps your career to grow in the future. Do not be disheartened if things do not go your way, there is always hope and a lot of companies would like to hire an intelligent candidate like you.
Cheers :)

I applied via Campus Placement and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Prepare normal for aptitude - maths, quant, analytic

Round 2 - Group Discussion 

My GD topic was Is internet good for students or not

Round 3 - Coding Test 

I didn't attempt this as I was noob back in third year Engg

Round 4 - HR 

(1 Question)

  • Q1. Basic questions can you relocate, tell me about ur GD and composition

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy peasy give ur best. Prepare well. Hope u get the job. Phir tho google ka hi dream rhe gaya he mera.
Are these interview questions helpful?

I applied via Campus Placement and was interviewed in Nov 2020. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are oops concept
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

    • Encapsulation - binding data and functions that manipulate the data

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on many forms

    • Abstraction - hiding implementation details and showing only functionality

  • Answered by AI
  • Q2. What is storage classes in c
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • There are four storage classes in C: auto, register, static, and extern.

    • Auto variables are local to a block and have automatic storage duration.

    • Register variables are stored in CPU registers for faster access.

    • Static variables have a lifetime throughout the program and are initialized only once.

    • Extern variables are declared outside any function and can be a...

  • Answered by AI
  • Q3. Describe about your final year project and internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence,and positive and answer your question confidently.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Explain the data structures like linked list, dfs and bfs.
  • Ans. 

    Linked list is a linear data structure. DFS and BFS are graph traversal algorithms.

    • Linked list is a collection of nodes where each node points to the next node.

    • DFS (Depth First Search) is a traversal algorithm that explores as far as possible along each branch before backtracking.

    • BFS (Breadth First Search) is a traversal algorithm that explores all the vertices of a graph in breadth-first order.

    • Example of linked list: ...

  • Answered by AI
  • Q2. Optimize the given program from O(n2) to O(log n)
  • Ans. 

    Optimize O(n2) program to O(log n)

    • Use binary search instead of linear search

    • Divide and conquer approach can be used

    • Implement efficient data structures like heap, AVL tree, etc.

    • Reduce unnecessary iterations and comparisons

    • Use memoization to avoid redundant calculations

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Data srructures

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident revise data structures ,

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
54.7k salaries
unlock blur

₹4.8 L/yr - ₹10 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.5 L/yr

System Engineer
32.5k salaries
unlock blur

₹2.4 L/yr - ₹5.3 L/yr

Senior Associate Consultant
31.2k 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