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 Sdet Automation Test Engineer Interview Questions and Answers

Updated 8 Jan 2025

6 Interview questions

A Sdet Automation Test Engineer was asked 5mo ago
Q. What are implicit and explicit waits? What are the key differences between them, and what is the syntax for each?
Ans. 

Implicit and Explicit wait are used in Selenium for handling synchronization issues in test automation.

  • Implicit wait is set globally for the entire test script, while explicit wait is applied only to specific elements.

  • Implicit wait waits for a specified amount of time before throwing a NoSuchElementException, while explicit wait waits for a specific condition to be met before proceeding.

  • Syntax for implicit wait: d...

A Sdet Automation Test Engineer was asked 5mo ago
Q. How do you write XPath expressions using parent-child relationships?
Ans. 

Xpath writing with parent child relation involves specifying the path to locate elements based on their hierarchical relationship.

  • Use '/' to specify direct child elements

  • Use '//' to specify any descendant elements

  • Use '[]' to specify conditions for selecting elements

  • Example: //div[@class='parent']/child::span

Sdet Automation Test Engineer Interview Questions Asked at Other Companies

Q1. Wait in selenium and how to find all links present in a page xpat ... read more
Q2. What is page object model and test ng annotations
Q3. How do you handle alerts in Selenium, and what methods do you use ... read more
Q4. How to take screenshot and project framework
Q5. What is the software testing life cycle?
A Sdet Automation Test Engineer was asked 6mo ago
Q. Can you write a program that outputs a sentence in reverse?
Ans. 

Yes, I can write a program that outputs a sentence in reverse.

  • Create a function that takes a string as input

  • Split the string into an array of words

  • Reverse the array

  • Join the array back into a string and return

A Sdet Automation Test Engineer was asked
Q. Explain the concept of a constructor.
Ans. 

Constructors are special methods in OOP used to initialize objects when they are created.

  • Constructors have the same name as the class they belong to.

  • They do not have a return type, not even void.

  • Example: In Java, 'public ClassName() { }' is a constructor.

  • Constructors can be overloaded, allowing multiple ways to initialize an object.

  • Example: 'public ClassName(int value) { this.value = value; }' initializes with an ...

A Sdet Automation Test Engineer was asked 5mo ago
Q. Java constructor oops concepts and code for swapping two numbers
Ans. 

Java constructor is a special type of method used to initialize objects. Swapping two numbers can be done using a temporary variable.

  • Java constructor is used to initialize objects in a class.

  • Swapping two numbers can be done by using a temporary variable.

  • Example code for swapping two numbers using constructor:

  • public class NumberSwapper {

  • int num1;

  • int num2;

  • public NumberSwapper(int a, int b) {

  • num1 = a;

  • nu...

A Sdet Automation Test Engineer was asked
Q. Oops concepts of java
Ans. 

Oops concepts of Java

  • Encapsulation: Bundling data and methods together in a class

  • Inheritance: Acquiring properties and behaviors from a parent class

  • Polymorphism: Ability to take on many forms

  • Abstraction: Hiding complex implementation details

  • Interface: Blueprint of a class that defines methods to be implemented

Infosys Sdet Automation Test Engineer Interview Experiences

7 interviews found

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

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the different phases of the Software Testing Life Cycle (STLC)?
  • Ans. 

    STLC consists of phases like requirement analysis, test planning, test design, test execution, and test closure.

    • Requirement Analysis: Understanding the project requirements and defining the scope of testing.

    • Test Planning: Creating a test plan which includes test strategy, test objectives, and resource planning.

    • Test Design: Developing test cases and test scenarios based on requirements.

    • Test Execution: Running the test c...

  • Answered by AI
  • Q2. Can you write a program that outputs a sentence in reverse?
  • Ans. 

    Yes, I can write a program that outputs a sentence in reverse.

    • Create a function that takes a string as input

    • Split the string into an array of words

    • Reverse the array

    • Join the array back into a string and return

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Can you introduce yourself?
  • Ans. 

    I am a dedicated SDET Automation Test Engineer with 5 years of experience in creating and executing automated test scripts.

    • 5 years of experience in automation testing

    • Proficient in creating and executing automated test scripts

    • Strong knowledge of testing tools like Selenium and JUnit

    • Experience in Agile development environment

    • Excellent problem-solving skills

  • Answered by AI
  • Q2. What are your salary expectations?
  • Ans. 

    My salary expectations are based on my experience, skills, and the market rate for the position.

    • Research the average salary range for SDET Automation Test Engineers in the industry

    • Consider your level of experience and skills compared to the job requirements

    • Factor in any additional benefits or perks offered by the company

    • Be prepared to negotiate based on the overall compensation package

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Bug life cycle and agile proces.
  • Q2. Implicit and Explicit wait, key difference and the syntax.
  • Ans. 

    Implicit and Explicit wait are used in Selenium for handling synchronization issues in test automation.

    • Implicit wait is set globally for the entire test script, while explicit wait is applied only to specific elements.

    • Implicit wait waits for a specified amount of time before throwing a NoSuchElementException, while explicit wait waits for a specific condition to be met before proceeding.

    • Syntax for implicit wait: driver...

  • Answered by AI
  • Q3. Xpath writing with parent child relation
  • Ans. 

    Xpath writing with parent child relation involves specifying the path to locate elements based on their hierarchical relationship.

    • Use '/' to specify direct child elements

    • Use '//' to specify any descendant elements

    • Use '[]' to specify conditions for selecting elements

    • Example: //div[@class='parent']/child::span

  • Answered by AI
  • Q4. Java constructor oops concepts and code for swapping two numbers
  • Ans. 

    Java constructor is a special type of method used to initialize objects. Swapping two numbers can be done using a temporary variable.

    • Java constructor is used to initialize objects in a class.

    • Swapping two numbers can be done by using a temporary variable.

    • Example code for swapping two numbers using constructor:

    • public class NumberSwapper {

    • int num1;

    • int num2;

    • public NumberSwapper(int a, int b) {

    • num1 = a;

    • num2 = ...

  • Answered by AI
Round 2 - Coding Test 

Amazon website needs to validate drop-down value

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Java programs, concepts of java selenium
  • Q2. Oops concepts of java
  • Ans. 

    Oops concepts of Java

    • Encapsulation: Bundling data and methods together in a class

    • Inheritance: Acquiring properties and behaviors from a parent class

    • Polymorphism: Ability to take on many forms

    • Abstraction: Hiding complex implementation details

    • Interface: Blueprint of a class that defines methods to be implemented

  • Answered by AI
  • Q3. Constructor concept
  • Ans. 

    Constructors are special methods in OOP used to initialize objects when they are created.

    • Constructors have the same name as the class they belong to.

    • They do not have a return type, not even void.

    • Example: In Java, 'public ClassName() { }' is a constructor.

    • Constructors can be overloaded, allowing multiple ways to initialize an object.

    • Example: 'public ClassName(int value) { this.value = value; }' initializes with an integ...

  • Answered by AI
  • Q4. Java logical program
  • Q5. Selenium webdriver questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Study well

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Where you worked
  • Ans. 

    I have worked at multiple companies in the tech industry, gaining experience in automation testing.

    • Worked at XYZ Company as a SDET Automation Test Engineer

    • Implemented automation testing frameworks using Selenium and Java

    • Collaborated with cross-functional teams to ensure quality of software products

  • Answered by AI
  • Q2. What you were getting
Round 2 - Coding Test 

Some java codes with medium level

Round 3 - One-on-one 

(2 Questions)

  • Q1. What was your project
  • Ans. 

    I worked on a project to automate testing for a web-based e-commerce platform.

    • Developed automated test scripts using Selenium WebDriver and Java

    • Performed regression testing to ensure new features did not break existing functionality

    • Collaborated with developers to identify and fix bugs in the code

    • Used Jira for tracking test cases and defects

  • Answered by AI
  • Q2. What did you do

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Company Website and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Coding Test 

Real time scenarios of Selenium

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

I applied via Job Fair and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions about Sets and maps
Round 2 - Behavioral 

(1 Question)

  • Q1. Asking about deliverables
Round 3 - HR 

(1 Question)

  • Q1. Behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation is key to success.

Sdet Automation Test Engineer Interview Questions & Answers

user image Rushikesh vasant Nagargoje

posted on 29 Apr 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Technical based selenium, testng and some core Java oops concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be prepare and best luck ...

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

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

I applied via Naukri.com and was interviewed before Dec 2022. There were 3 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 - Technical 

(2 Questions)

  • Q1. Selenium and testng questions.
  • Q2. Java program to reverse a sentence
  • Ans. 

    Java program to reverse a sentence

    • Split the sentence into words using the split() method

    • Create a new array to store the reversed words

    • Iterate through the words in reverse order and add them to the new array

    • Join the reversed words using the join() method to form the reversed sentence

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Oops and collection questions.
  • Q2. Program to find repeated character in a word.
  • Ans. 

    Program to find repeated character in a word.

    • Iterate through each character in the word

    • Store each character in a data structure

    • If a character is already present in the data structure, it is a repeated character

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 Basic leetcode problems

Round 2 - One-on-one 

(4 Questions)

  • Q1. Asked questions from my Resume.
  • Q2. Asked questions about my Non-Technical Experiences
  • Q3. Asked me to automate some things from selenium webdriver because I had mentioned projects on resume.
  • Q4. Asked me to write some content explaining about cybersecurity awareness because I had mentioned Content Writing on my resume.

Interview Preparation Tips

Topics to prepare for IBM Sdet Automation Test Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Be Honest and Concise, Dont overshare when a question is asked, just answer the question in its entirety
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Manual Testing Concepts
  • Q2. What are Oops Concepts
  • Ans. 

    Oops Concepts are fundamental principles of object-oriented programming such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability of a function to behave differently based on the object it is acting upon.

    • Abstraction: Hiding t...

  • Answered by AI

Infosys Interview FAQs

How many rounds are there in Infosys Sdet Automation Test Engineer interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical, HR and Coding Test.
What are the top questions asked in Infosys Sdet Automation Test Engineer interview?

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

  1. What are the different phases of the Software Testing Life Cycle (STL...read more
  2. Can you write a program that outputs a sentence in rever...read more
  3. Implicit and Explicit wait, key difference and the synt...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 7 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 40%
2-4 weeks 60%
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys Sdet Automation Test Engineer Salary
based on 91 salaries
₹3.9 L/yr - ₹7.9 L/yr
57% less than the average Sdet Automation Test Engineer Salary in India
View more details

Infosys Sdet Automation Test Engineer Reviews and Ratings

based on 10 reviews

4.1/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

2.6

Salary

4.5

Job security

4.1

Company culture

2.7

Promotions

3.4

Work satisfaction

Explore 10 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