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

Compare button icon Compare button icon Compare
3.7

based on 37.2k Reviews

Filter interviews by

Infosys Automation Engineer Interview Questions, Process, and Tips

Updated 16 Jan 2025

Top Infosys Automation Engineer Interview Questions and Answers

Infosys Automation Engineer Interview Experiences

9 interviews found

Automation Engineer Interview Questions & Answers

user image Sangeetha Prabhakaran

posted on 5 Jan 2025

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 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Some basic oops concepts
  • Q2. Java program to alternate words in a string
Round 2 - Technical 

(1 Question)

  • Q1. Yet to attend the 2nd round
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. About project,java ,selenium,framework,data driven coding
  • Q2. Agile methodology,api ,map,method overriding
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectation and negotitation
  • Q2. Location preference

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well .moderate level

Automation Engineer Interview Questions Asked at Other Companies

asked in GEA Group
Q1. 16) What is modbus ? Types of modbus? How many slaves we can conn ... read more
asked in Blue Yonder
Q2. 1. What is the difference between Absolute & Relative Xpaths?
Q3. 1. Explain oops concepts in coding. 2. Write a program to find mi ... read more
Q4. One coding challenge was given to find the number of palindrome w ... read more
asked in GEA Group
Q5. 15) What is ASI protocol? How many slaves we can connect to one m ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. All oops questions and palindrome program
  • Q2. Selenium questions
  • Q3. Agile and scrum
  • Q4. Experience in postman
  • Q5. Interface vs abstraction
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About project and technical skills
  • Q2. About previous employee

Interview Preparation Tips

Interview preparation tips for other job seekers - be perfect on java

Infosys interview questions for designations

 Automation Test Engineer

 (35)

 Senior Automation Engineer

 (2)

 QA Automation Engineer

 (1)

 Automation Tester

 (3)

 Sdet Automation Test Engineer

 (7)

 Qa Automation Testing Engineer

 (5)

 QA Engineer Automation QA.Selenium

 (1)

 Tosca Automation Test Engineer

 (1)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Find a string is palindrome or not

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java Code for reverse string
  • Ans. 

    Java code to reverse a string using StringBuilder

    • Create a StringBuilder object with the input string

    • Use the reverse() method of StringBuilder to reverse the string

    • Convert the reversed StringBuilder object back to a string using toString()

  • Answered by AI
  • Q2. Maximzise screen in webpage
  • Ans. 

    To maximize screen in a webpage, use CSS properties like 'width: 100%' and 'height: 100vh'.

    • Set 'width: 100%' to make the content fill the entire width of the screen

    • Use 'height: 100vh' to make the content fill the entire height of the viewport

    • Consider using media queries for responsive design

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready to code on screen share all the time

Skills evaluated in this interview

Automation Engineer Jobs at Infosys

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

(2 Questions)

  • Q1. Java basics related q
  • Q2. Testng related qiestions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare will
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain your framework
  • Ans. 

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

    • Uses Selenium WebDriver for interacting with web elements

    • Utilizes TestNG for test case management and reporting

    • Employs data-driven approach for test data separation and reusability

  • Answered by AI
  • Q2. Basics of selenium
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic tree map concept
Round 2 - Coding Test 

Same with client Google

Interview Preparation Tips

Interview preparation tips for other job seekers - Na

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(10 Questions)

  • Q1. What is the output of below code class Animal{ Animal(){ System.out.println("animal is created") } class Dog extends Animal{ Dog(){ System.out.println("Dog is created")} class TestSuper4{ pub...
  • Ans. 

    The output of the code will be 'animal is created' followed by 'Dog is created'.

    • The code defines a class Animal with a constructor that prints 'animal is created'.

    • It also defines a class Dog that extends Animal, with a constructor that prints 'Dog is created'.

    • In the main method, an instance of Dog is created, which will trigger the constructors of both Animal and Dog classes.

  • Answered by AI
  • Q2. Output of this : System.out.println(10+20+"Hello"+30+40) - Explain
  • Q3. Output of this : String name="Hello"; name=name+"There"; system.out.println(name)
  • Ans. 

    The output will be 'HelloThere'

    • Concatenation of 'Hello' and 'There' results in 'HelloThere'

    • The final string is printed using System.out.println()

  • Answered by AI
  • Q4. StringBuffer buffer=new StringBuffer("Hello") buffer.append("There"); System.out.println(buffer);
  • Ans. 

    The code creates a StringBuffer object with 'Hello' and appends 'There' to it before printing the final string.

    • StringBuffer is mutable, so the original 'Hello' string can be modified

    • The append() method adds the specified string to the end of the buffer

    • The final output will be 'HelloThere'

  • Answered by AI
  • Q5. Which is valid or invalid a. ChromeDriver driver=new ChromeDriver(); b. WebDriver driver=new ChromeDriver(); c. WebDriver driver2=new WebDriver(); driver2=new ChromeDriver();
  • Ans. 

    Option a is valid, option b is valid, option c is invalid.

    • Option a is valid because ChromeDriver is a subclass of WebDriver, so it can be assigned to a WebDriver reference.

    • Option b is valid because ChromeDriver is a subclass of WebDriver, so it can be instantiated using a WebDriver reference.

    • Option c is invalid because WebDriver is an interface and cannot be instantiated directly. It can only be used as a reference typ

  • Answered by AI
  • Q6. Program to sort the input in descending order without using inbuild method/functions
  • Ans. 

    Sort input array of strings in descending order without using inbuilt functions

    • Iterate through the array and compare each element with the rest to find the largest element

    • Swap the largest element with the first element, then repeat the process for the remaining elements

    • Continue this process until the array is sorted in descending order

  • Answered by AI
  • Q7. Difference between findElement and findElements
  • Ans. 

    findElement returns the first matching element on the page, while findElements returns a list of all matching elements.

    • findElement returns a single WebElement matching the locator provided

    • findElements returns a list of WebElements matching the locator provided

    • findElement will throw NoSuchElementException if no element is found, while findElements will return an empty list

  • Answered by AI
  • Q8. Difference between getwindowhandle and getwindowhandles() and what is output type
  • Ans. 

    getwindowhandle returns the handle of the current window, getwindowhandles() returns handles of all open windows

    • getwindowhandle returns a single window handle, while getwindowhandles() returns a set of window handles

    • getwindowhandle is used to switch between windows in Selenium WebDriver

    • Output type of getwindowhandle is String, while output type of getwindowhandles() is Set

Answered by AI
  • Q9. Question on finding the xpaths on website
  • Q10. Difference between String and StringBuilder?
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning its value cannot be changed once it is created.

    • StringBuilder is mutable, allowing for modifications to the string without creating a new object.

    • StringBuilder is more efficient for concatenating multiple strings as it does not create new objects each time.

    • Example: String str = "Hello"; StringBuil

  • Answered by AI

    Skills evaluated in this interview

    Infosys Interview FAQs

    How many rounds are there in Infosys Automation Engineer interview?
    Infosys interview process usually has 1-2 rounds. The most common rounds in the Infosys interview process are Technical, Coding Test and One-on-one Round.
    How to prepare for Infosys Automation 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 Engineering, Objective C, Swift, React Native and Kotlin.
    What are the top questions asked in Infosys Automation Engineer interview?

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

    1. Java program to alternate words in a str...read more
    2. Java Code for reverse str...read more
    3. Maximzise screen in webp...read more

    Tell us how to improve this page.

    Infosys Automation Engineer Interview Process

    based on 9 interviews in last 1 year

    1 Interview rounds

    • Technical Round
    View more

    People are getting interviews through

    based on 5 Infosys interviews
    Job Portal
    Company Website
    60%
    20%
    20% candidates got the interview through other sources.
    Moderate Confidence
    ?
    Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
    Join Infosys Creating the next opportunity for people, businesses & communities
    Infosys Automation Engineer Salary
    based on 118 salaries
    ₹3 L/yr - ₹11.9 L/yr
    At par with the average Automation Engineer Salary in India
    View more details

    Infosys Automation Engineer Reviews and Ratings

    based on 13 reviews

    3.0/5

    Rating in categories

    2.9

    Skill development

    3.6

    Work-Life balance

    2.4

    Salary & Benefits

    4.3

    Job Security

    3.3

    Company culture

    2.2

    Promotions/Appraisal

    2.3

    Work Satisfaction

    Explore 13 Reviews and Ratings
    Automation Engineer-Bengaluru,Hyderabad-AB

    Hyderabad / Secunderabad,

    Ahmedabad

    +1

    5-10 Yrs

    Not Disclosed

    Automation Engineer_Pune

    Pune,

    Chennai

    +1

    5-10 Yrs

    Not Disclosed

    Automation Engineer-Bengaluru-AB

    Ahmedabad,

    Bangalore / Bengaluru

    +1

    5-10 Yrs

    Not Disclosed

    Explore more jobs
    Technology Analyst
    56.2k salaries
    unlock blur

    ₹3 L/yr - ₹11 L/yr

    Senior Systems Engineer
    49.7k salaries
    unlock blur

    ₹2.8 L/yr - ₹8 L/yr

    System Engineer
    39k salaries
    unlock blur

    ₹2.5 L/yr - ₹5.5 L/yr

    Technical Lead
    30.7k salaries
    unlock blur

    ₹5.2 L/yr - ₹19.5 L/yr

    Senior Associate Consultant
    27.1k salaries
    unlock blur

    ₹4.3 L/yr - ₹16.8 L/yr

    Explore more salaries
    Compare Infosys with

    TCS

    3.7
    Compare

    Wipro

    3.7
    Compare

    Cognizant

    3.8
    Compare

    Accenture

    3.9
    Compare

    Calculate your in-hand salary

    Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
    Did you find this page helpful?
    Yes No
    write
    Share an Interview