Logo

Get AmbitionBox App

Faster and better experience!

AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    WINNERS AWAITED!
    • ABECA 2025
      WINNERS AWAITED!

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    • AmbitionBox Best Places to Work 2021

      1st Edition

For Employers
Upload Button Icon Add office photos
logo
Engaged 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

Compare button icon Compare button icon Compare
3.6

based on 42.1k Reviews

Play video Play video Video summary
  • About
  • Reviews
    42.1k
  • Salaries
    4.8L
  • Interviews
    7.8k
  • Jobs
    1.6k
  • Benefits
    5.4k
  • Photos
    117
  • Posts
    66

Filter interviews by

Infosys Automation Test Engineer Interview Questions and Answers

Updated 29 Apr 2025

32 Interview questions

🔥 Asked by recruiter 2 times
An Automation Test Engineer was asked 3mo ago
Q. What are the differences between agile and waterfall methodologies?
Ans. 

Agile is iterative and flexible, while waterfall is sequential and rigid.

  • Agile focuses on delivering working software in short iterations, while waterfall follows a linear approach with distinct phases.

  • Agile allows for changes and adaptations throughout the project, while waterfall requires detailed planning upfront.

  • Agile promotes collaboration and communication within teams, while waterfall relies on strict docum...

An Automation Test Engineer was asked 3mo ago
Q. How do you handle dynamic web elements using XPath?
Ans. 

Dynamic webElements can be handled using Xpath by using relative Xpath expressions to locate elements based on their attributes or position in the DOM.

  • Use Xpath expressions to locate webElements based on their attributes such as id, class, name, etc.

  • Use Xpath functions like contains(), starts-with(), and text() to locate elements based on their text content.

  • Use Xpath axes like following-sibling, preceding-sibling,...

Automation Test Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. How to handle scrollbar and mouse activities Jenkins and Github S ... read more
View answers (2)
asked in Infosys
Q2. Introduce yourself 1.What is STLC 2. difference between Test plan ... read more
View answers (2)
asked in LTIMindtree
Q3. 1. diff b/w findelements vs findelement? 2. set vs map? 3. wap fo ... read more
View answers (4)
asked in Capgemini
Q4. 1] Introduction 2] Sanity Vs Smoke testing 3] Waits in selenium a ... read more
View answer (1)
asked in Capgemini
Q5. What is assertion? What is soft assertion? What is hard assertion ... read more
View answer (1)
View All
An Automation Test Engineer was asked 3mo ago
Q. What is a spike in agile methodology?
Ans. 

A spike in agile is a time-boxed research or investigation task to gather information or explore potential solutions for a specific problem.

  • Spike is a temporary activity to reduce uncertainty or risk in a project.

  • It is time-boxed, meaning it has a fixed duration.

  • Spike is not a regular user story but a task to gather information or explore solutions.

  • Examples of spikes include researching a new technology, exploring...

An Automation Test Engineer was asked 3mo ago
Q. Can you explain the sprint point system?
Ans. 

Sprint point system is a method used in Agile project management to measure the amount of work completed in a sprint.

  • Sprint points are used to estimate the effort required to complete a task or user story.

  • Points are assigned based on complexity, effort, and risk involved in completing the task.

  • Common point systems include Fibonacci sequence (1, 2, 3, 5, 8, 13, etc.) or t-shirt sizes (XS, S, M, L, XL).

What people are saying about Infosys

View All
berlin001
Verified Icon
2w (edited)
works at
Infosys
Infosys to Deloitte India Switch
Hi Folks, I am currently working in Infosys from last 3.5 years. I got an offer from Deloitte India for Consultant role with almost 100% hike. Anyone knows about work culture, pressure and WFO guidelines in Deloitte India ? Will this be a worth switch ? PS: I do have offer from Accenture also but it is less (almost 3 LPA less than Deloitte). Anyone guidance will be appreciated. Thank you.
Got a question about Infosys?
Ask anonymously on communities.
An Automation Test Engineer was asked 4mo ago
Q. What is the code to reverse a sentence?
Ans. 

Code to reverse a sentence using array of strings.

  • Split the sentence into an array of words

  • Reverse the array

  • Join the array back into a sentence

An Automation Test Engineer was asked 4mo ago
Q. What is a static block in Java?
Ans. 

Static block in Java is a block of code that is executed only once when the class is loaded.

  • Static block is used to initialize static variables of a class.

  • It is executed before the main method.

  • Syntax: static { // code to be executed }

  • Example: static { System.out.println("Static block executed"); }

An Automation Test Engineer was asked 4mo ago
Q. What is exclude and include in TestNG?
Ans. 

Exclude and include in TestNG are used to specify which test methods to run or skip during test execution.

  • Exclude attribute is used to specify which test methods to skip during test execution

  • Include attribute is used to specify which test methods to run during test execution

  • Both attributes can be used in the testng.xml file or in the @Test annotation

  • Example: @Test(groups = {"smoke"}, excludeGroups = {"regression"}...

Are these interview questions helpful?
An Automation Test Engineer was asked 4mo ago
Q. Can you explain the Maven build lifecycle?
Ans. 

Maven build lifecycle consists of phases like compile, test, package, install, deploy.

  • Maven build lifecycle consists of three main phases: clean, default, and site.

  • Each phase consists of a series of goals that are executed in a specific order.

  • Some common goals in Maven build lifecycle include compile, test, package, install, and deploy.

  • The clean phase removes all files generated by the previous build.

  • The default p...

An Automation Test Engineer was asked 7mo ago
Q. What is the difference between implicit wait and explicit wait?
Ans. 

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

  • Implicit wait is set using driver.manage().timeouts().implicitlyWait() in Selenium, while explicit wait is implemented using WebDriverWait class.

  • Implicit wait is used to wait for elements to be present in the DOM, while explicit wait is used to wait for specific conditions to be met be...

An Automation Test Engineer was asked 11mo ago
Q. What challenges have you faced while committing code to version control?
Ans. 

Challenges include conflicts with other developers' changes, incorrect file paths, and forgetting to add files.

  • Conflicts with other developers' changes

  • Incorrect file paths

  • Forgetting to add files

1 2 3 4

Infosys Automation Test Engineer Interview Experiences

38 interviews found

Automation Test Engineer Interview Questions & Answers

user image Anonymous

posted on 8 Feb 2025

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

(6 Questions)

  • Q1. Write a code for febonacci series
  • Ans. 

    Code to generate Fibonacci series

    • Use a loop to generate Fibonacci numbers

    • Start with 0 and 1 as the first two numbers

    • Add the previous two numbers to get the next number

    • Repeat until desired number of Fibonacci numbers are generated

  • Answered by AI
    View 1 more answer
  • Q2. Dynamic webElements handling using Xpath?
  • Ans. 

    Dynamic webElements can be handled using Xpath by using relative Xpath expressions to locate elements based on their attributes or position in the DOM.

    • Use Xpath expressions to locate webElements based on their attributes such as id, class, name, etc.

    • Use Xpath functions like contains(), starts-with(), and text() to locate elements based on their text content.

    • Use Xpath axes like following-sibling, preceding-sibling, pare...

  • Answered by AI
    Add your answer
  • Q3. What is spike in agile?
  • Ans. 

    A spike in agile is a time-boxed research or investigation task to gather information or explore potential solutions for a specific problem.

    • Spike is a temporary activity to reduce uncertainty or risk in a project.

    • It is time-boxed, meaning it has a fixed duration.

    • Spike is not a regular user story but a task to gather information or explore solutions.

    • Examples of spikes include researching a new technology, exploring a co...

  • Answered by AI
    Add your answer
  • Q4. Difference between agile and waterfall based model?
  • Ans. 

    Agile is iterative and flexible, while waterfall is sequential and rigid.

    • Agile focuses on delivering working software in short iterations, while waterfall follows a linear approach with distinct phases.

    • Agile allows for changes and adaptations throughout the project, while waterfall requires detailed planning upfront.

    • Agile promotes collaboration and communication within teams, while waterfall relies on strict documentat...

  • Answered by AI
    Add your answer
  • Q5. Sprint point system? Explain?
  • Ans. 

    Sprint point system is a method used in Agile project management to measure the amount of work completed in a sprint.

    • Sprint points are used to estimate the effort required to complete a task or user story.

    • Points are assigned based on complexity, effort, and risk involved in completing the task.

    • Common point systems include Fibonacci sequence (1, 2, 3, 5, 8, 13, etc.) or t-shirt sizes (XS, S, M, L, XL).

  • Answered by AI
    Add your answer
  • Q6. Payment failure by debit card in e-commerce site? Make test scenarios?
  • Ans. 

    Test scenarios for payment failure by debit card in e-commerce site

    • Attempt payment with insufficient funds in the account

    • Attempt payment with expired debit card

    • Attempt payment with incorrect CVV code

    • Attempt payment with incorrect card details

    • Attempt payment while the bank's server is down

  • Answered by AI
    Add your answer
Anonymous

Automation Test Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Jan 2025

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

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Can you explain the Maven build lifecycle?
  • Ans. 

    Maven build lifecycle consists of phases like compile, test, package, install, deploy.

    • Maven build lifecycle consists of three main phases: clean, default, and site.

    • Each phase consists of a series of goals that are executed in a specific order.

    • Some common goals in Maven build lifecycle include compile, test, package, install, and deploy.

    • The clean phase removes all files generated by the previous build.

    • The default phase ...

  • Answered by AI
    Add your answer
  • Q2. What is the code to reverse a sentence?
  • Ans. 

    Code to reverse a sentence using array of strings.

    • Split the sentence into an array of words

    • Reverse the array

    • Join the array back into a sentence

  • Answered by AI
    View 1 more answer
  • Q3. What is static block in java?
  • Ans. 

    Static block in Java is a block of code that is executed only once when the class is loaded.

    • Static block is used to initialize static variables of a class.

    • It is executed before the main method.

    • Syntax: static { // code to be executed }

    • Example: static { System.out.println("Static block executed"); }

  • Answered by AI
    Add your answer
  • Q4. What is exclude and include in TestNG?
  • Ans. 

    Exclude and include in TestNG are used to specify which test methods to run or skip during test execution.

    • Exclude attribute is used to specify which test methods to skip during test execution

    • Include attribute is used to specify which test methods to run during test execution

    • Both attributes can be used in the testng.xml file or in the @Test annotation

    • Example: @Test(groups = {"smoke"}, excludeGroups = {"regression"})

  • Answered by AI
    Add your answer
  • Q5. What is code for reverse a digit?
  • Ans. 

    To reverse a digit, convert it to a string and then reverse the string.

    • Convert the digit to a string

    • Use built-in functions to reverse the string

    • Convert the reversed string back to a digit if needed

  • Answered by AI
    View 1 more answer
Anonymous

Automation Test Engineer Interview Questions & Answers

user image hanamant boodi

posted on 5 Mar 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Difference between list and set
  • Ans. 

    Lists are ordered and allow duplicates; sets are unordered and do not allow duplicates.

    • Lists maintain the order of elements. Example: [1, 2, 3, 3] has duplicates.

    • Sets do not maintain order and eliminate duplicates. Example: {1, 2, 3} only keeps unique values.

    • Lists can be indexed and sliced. Example: list[0] gives the first element.

    • Sets are optimized for membership tests. Example: '3 in set' is faster than '3 in list'.

    • L...

  • Answered by AI
    Add your answer
  • Q2. Difference between abstract class and interface
  • Ans. 

    Abstract classes allow partial implementation, while interfaces define a contract with no implementation.

    • Abstract classes can have both abstract methods (without implementation) and concrete methods (with implementation).

    • Interfaces can only declare methods (no implementation) and can include default methods since Java 8.

    • A class can inherit from only one abstract class but can implement multiple interfaces.

    • Example of an...

  • Answered by AI
    Add your answer
Anonymous

Automation Test Engineer Interview Questions & Answers

user image Suraj Sachin

posted on 8 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Tell me about yourself
  • Add your answer
  • Q2. Write code for getting title of web page
  • Add your answer
  • Q3. Write code to print duplicate characters of string
  • Add your answer
  • Q4. Framework structure
  • Add your answer
Anonymous

Automation Test Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Jan 2025

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

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

Round 1 - Coding Test 

Fundamental questions about Selenium encompass topics such as: 1. right-click actions and mouse movement, 2. screenshot methods and functions, 3. handling multiple window controls, 4. concepts of Object-Oriented Programming (OOP), 5. differences among collections, sets, and maps, 6. framework architecture, 7. sorting an array without using built-in functions, and 8. managing failed test cases in TestNG.

Anonymous

Automation Test Engineer Interview Questions & Answers

user image Anonymous

posted on 6 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a program to reverse string
  • Add your answer
  • Q2. Explain TestNG annotations & sequence of the annotation. Also which annotation is used to repeat the test case?
  • Add your answer
Anonymous

Automation Test Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Sep 2024

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

(2 Questions)

  • Q1. What is the difference implicit wait and explicit wait
  • Ans. 

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

    • Implicit wait is set using driver.manage().timeouts().implicitlyWait() in Selenium, while explicit wait is implemented using WebDriverWait class.

    • Implicit wait is used to wait for elements to be present in the DOM, while explicit wait is used to wait for specific conditions to be met before ...

  • Answered by AI
    Add your answer
  • Q2. What is the difference between selenium 3 and selenium4
  • Ans. 

    Selenium 4 has new features like relative locators, improved grid support, and better integration with DevTools compared to Selenium 3.

    • Selenium 4 has introduced relative locators which help in locating elements based on their relationship with other elements.

    • Selenium 4 provides improved grid support with the introduction of the new GridConfig class.

    • Selenium 4 has better integration with DevTools for better debugging an...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Automation Test Engineer Interview Questions & Answers

user image samir madane

posted on 29 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Print below star pattern * *** ****** ********
  • Ans. 

    This pattern displays stars in increasing order, showcasing a simple yet effective way to illustrate nested loops in programming.

    • Pattern Structure: The pattern consists of rows where each row has an increasing number of stars.

    • Row Count: There are 4 rows in total, with the first row having 1 star, the second 3 stars, the third 6 stars, and the fourth 8 stars.

    • Loop Implementation: A nested loop can be used to print the st...

  • Answered by AI
    Add your answer
  • Q2. Int a[] = {23,56,34,78,45,82,30} find max & min value from array
  • Ans. 

    To find the maximum and minimum values in an array, iterate through the elements and compare each value.

    • Initialization: Start by initializing two variables, max and min, with the first element of the array. Example: max = a[0], min = a[0].

    • Iteration: Loop through the array from the second element to the last. For each element, compare it with max and min.

    • Comparison: If the current element is greater than max, update max...

  • Answered by AI
    Add your answer
Anonymous

Automation Test Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Dec 2024

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

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on Selenium and Java
  • Add your answer
  • Q2. Basics of SQL
  • Add your answer
Round 2 - Behavioral 

(2 Questions)

  • Q1. Basic questions on Resume
  • Add your answer
  • Q2. Basics of Testing
  • Add your answer
Anonymous

Automation Test Engineer Interview Questions & Answers

user image Anonymous

posted on 12 May 2024

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

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

Round 1 - Technical 

(9 Questions)

  • Q1. What is postman
  • Ans. 

    Postman is a popular API testing tool used for testing and debugging APIs.

    • Postman allows users to send requests to APIs and receive responses

    • It provides a user-friendly interface for creating and managing API requests

    • Postman can be used for automated testing of APIs

    • It supports various request types such as GET, POST, PUT, DELETE, etc.

  • Answered by AI
    Add your answer
  • Q2. How postman helps for api testing
  • Ans. 

    Postman helps in API testing by providing a user-friendly interface to send requests, automate testing, and analyze responses.

    • Postman allows testers to easily send requests to APIs and view responses in a user-friendly interface.

    • It provides features for automating API testing, such as creating test scripts and running collections of tests.

    • Postman also offers tools for analyzing responses, including detailed logs and te...

  • Answered by AI
    Add your answer
  • Q3. Method Overloading and overriding
  • Add your answer
  • Q4. Locators in Selenium
  • Ans. 

    Locators in Selenium are used to identify web elements on a webpage for automation testing purposes.

    • Locators include ID, class name, name, tag name, link text, partial link text, and xpath.

    • ID is the most efficient locator as it is unique for each element.

    • Xpath is powerful but can be slow and brittle if not used correctly.

    • Using CSS selectors is preferred over xpath for better performance.

    • Locators can be used with findEl...

  • Answered by AI
    Add your answer
  • Q5. SQL scenario based question
  • Add your answer
  • Q6. Smoke And Sanity
  • Add your answer
  • Q7. Many project based scenario question
  • Add your answer
  • Q8. Describe Your Framework
  • Ans. 

    My framework is a data-driven framework using Selenium WebDriver and TestNG for automated testing.

    • Data-driven approach for test data management

    • Integration of Selenium WebDriver for web automation

    • Utilization of TestNG for test case management and reporting

  • Answered by AI
    Add your answer
  • Q9. Jenkins and Maven
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume .you are shortlisted based on your resume for tech round.

Skills evaluated in this interview

Anonymous
More about working at Infosys
golden leaf award AmbitionBox awards

#19 Best Mega Company - 2022

golden leaf award
golden leaf award AmbitionBox awards

#12 Best Mega Company - 2021

golden leaf award
  • HQ - Bengaluru/Bangalore, Karnataka, India
  • IT Services & Consulting
  • 1 Lakh+ Employees (India)
  • Public

Infosys Interview FAQs

How many rounds are there in Infosys Automation Test Engineer interview?
Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical, One-on-one Round and HR.
How to prepare for Infosys Automation Test Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Infosys. The most common topics and skills that interviewers at Infosys expect are Automation Testing, Java, Selenium Testing, SDLC and Selenium.
What are the top questions asked in Infosys Automation Test Engineer interview?

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

  1. Introduce yourself 1.What is STLC 2. difference between Test plan,test case,tes...read more
  2. 3. What are different types of waits in seleni...read more
  3. 2.How to execute test cases in parall...read more
How long is the Infosys Automation Test Engineer interview process?

The duration of Infosys Automation Test Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Infosys Interviews By Designations

  • Infosys System Engineer Interview Questions
  • Infosys Software Engineer Interview Questions
  • Infosys Technology Analyst Interview Questions
  • Infosys Associate Consultant Interview Questions
  • Infosys Senior Systems Engineer Interview Questions
  • Infosys Software Developer Interview Questions
  • Infosys Business Analyst Interview Questions
  • Infosys Senior Associate Consultant Interview Questions
  • Show more
  • Infosys Operations Executive Interview Questions
  • Infosys Consultant Interview Questions

Interview Questions for Popular Designations

  • Senior Automation Engineer Interview Questions
  • Automation Tester Interview Questions
  • Senior Automation Test Engineer Interview Questions
  • Automation Test Lead Interview Questions
  • Automation Engineer Interview Questions
  • QA Automation Engineer Interview Questions
  • Selenium Automation Tester Interview Questions
  • Sdet Automation Test Engineer Interview Questions
  • Show more
  • Qa Automation Testing Engineer Interview Questions
  • Automation Testing Interview Questions

Overall Interview Experience Rating

3.6/5

based on 33 interview experiences

Difficulty level

Easy 5%
Moderate 90%
Hard 5%

Duration

Less than 2 weeks 63%
2-4 weeks 37%
View more

Top Skills for Infosys Automation Test Engineer

Software Testing Interview Questions & Answers
250 Questions
Software Development Interview Questions & Answers
250 Questions

Automation Test Engineer Interview Questions from Similar Companies

TCS
TCS Automation Test Engineer Interview Questions
3.6
 • 49 Interviews
Capgemini
Capgemini Automation Test Engineer Interview Questions
3.7
 • 44 Interviews
Cognizant
Cognizant Automation Test Engineer Interview Questions
3.7
 • 27 Interviews
LTIMindtree
LTIMindtree Automation Test Engineer Interview Questions
3.7
 • 23 Interviews
Accenture
Accenture Automation Test Engineer Interview Questions
3.8
 • 21 Interviews
Wipro
Wipro Automation Test Engineer Interview Questions
3.7
 • 16 Interviews
IBM
IBM Automation Test Engineer Interview Questions
4.0
 • 8 Interviews
HCLTech
HCLTech Automation Test Engineer Interview Questions
3.5
 • 7 Interviews
Tech Mahindra
Tech Mahindra Automation Test Engineer Interview Questions
3.5
 • 7 Interviews
NTT Data
NTT Data Automation Test Engineer Interview Questions
3.8
 • 4 Interviews
View all
Infosys Automation Test Engineer Salary
based on 1.2k salaries
₹3.6 L/yr - ₹13 L/yr
11% more than the average Automation Test Engineer Salary in India
View more details

Infosys Automation Test Engineer Reviews and Ratings

based on 73 reviews

4.1/5

Rating in categories

3.9

Skill development

4.2

Work-life balance

2.9

Salary

4.4

Job security

4.1

Company culture

3.0

Promotions

3.6

Work satisfaction

Explore 73 Reviews and Ratings
Automation Test Engineer Jobs at Infosys
Infosys
Automation Test Engineer _Java with Selenium_Delhi/NCR

Gurgaon / Gurugram,

Greater Noida

+1

5-9 Yrs

Not Disclosed

Infosys
Automation Test Engineer ( Seleniun with Java)

Gurgaon / Gurugram,

Greater Noida

+1

5-9 Yrs

Not Disclosed

Infosys
Automation Test Engineer_Java selenium

Noida,

Greater Noida

+1

5-9 Yrs

Not Disclosed

Explore more jobs
Infosys Salaries in India
Technology Analyst
55.8k salaries
unlock blur

₹3 L/yr - ₹11.5 L/yr

Senior Systems Engineer
52.6k salaries
unlock blur

₹2.5 L/yr - ₹8.1 L/yr

Technical Lead
34.7k salaries
unlock blur

₹7.3 L/yr - ₹20 L/yr

System Engineer
32.2k salaries
unlock blur

₹2.3 L/yr - ₹5.3 L/yr

Senior Associate Consultant
30.1k salaries
unlock blur

₹6.3 L/yr - ₹16.8 L/yr

Explore more salaries
Compare Infosys with
TCS

TCS

3.6
Compare
Wipro

Wipro

3.7
Compare
Cognizant

Cognizant

3.7
Compare
Accenture

Accenture

3.8
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Infosys Interview Questions >
  • Infosys Automation Test Engineer Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Helping over 1 Crore job seekers every month in choosing their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

6 Lakh+

Interviews

1 Crore+

Users/Month

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2026
  • ABECA 2025 winners awaited tag
  • ABECA 2024
  • AmbitionBox Best Places to Work 2022
  • AmbitionBox Best Places to Work 2021
  • Invite employees to rate
AmbitionBox
  • About Us
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter