Upload Button Icon Add office photos

Filter interviews by

Accenture Automation Engineer Interview Questions and Answers

Updated 7 Nov 2024

Accenture Automation Engineer Interview Experiences

8 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. SDLC , Defect management tool
  • Q2. Basic Java and selenium questions
  • Q3. Project related questions
  • Q4. Introduction of ourselves
  • Q5. What I like and dislike about IT
  • Ans. 

    I like the constant learning and problem-solving in IT, but dislike the long hours and high stress levels.

    • Like: Constant learning opportunities

    • Like: Problem-solving challenges

    • Dislike: Long working hours

    • Dislike: High stress levels

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About SQL command
  • Q2. About App Engins
Round 2 - Behavioral 

(2 Questions)

  • Q1. What projects I have worked on
  • Ans. 

    I have worked on projects involving automation of manufacturing processes using PLCs and robotics.

    • Developed PLC programs to automate assembly line processes

    • Integrated robotics systems for material handling and packaging

    • Implemented vision systems for quality control inspections

  • Answered by AI
  • Q2. What sort of bug fixes I have done earlier
  • Ans. 

    I have fixed various bugs related to automation scripts, UI elements, and data synchronization issues.

    • Fixed automation scripts to handle dynamic elements on web pages

    • Resolved issues with data synchronization between different systems

    • Debugged UI elements not being recognized by automation tools

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why you are switching
  • Ans. 

    Seeking new challenges and growth opportunities in automation engineering.

    • Looking for new challenges and opportunities to grow in my career

    • Interested in expanding my skills and knowledge in automation engineering

    • Excited about the potential to work on cutting-edge technologies and projects

  • Answered by AI
  • Q2. What is my expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - They take a lot of time to respond you need to have patience. I got call of offer and received it a month later

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

Automation Engineer Interview Questions & Answers

user image Shreyanshi Arun

posted on 6 Jun 2024

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

(2 Questions)

  • Q1. Basic java questions
  • Q2. Selenium questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops, framework related
Round 2 - Technical 

(1 Question)

  • Q1. Selenium , framework

Accenture interview questions for designations

 Automation

 (1)

 Automation Test Engineer

 (19)

 Senior Automation Engineer

 (1)

 Automation Tester

 (5)

 Selenium Automation

 (2)

 Automation Testing

 (1)

 Qa Automation Testing Engineer

 (4)

 Senior Automation Test Engineer

 (3)

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic java , selenium, testing
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. 1. What is Selenium
  • Ans. 

    Selenium is a popular open-source tool used for automating web browsers.

    • Selenium is used for automating web browsers to test web applications.

    • It supports multiple programming languages like Java, Python, C#, etc.

    • Selenium WebDriver is the most commonly used component for browser automation.

    • Selenium IDE is a record and playback tool for creating quick automation scripts.

    • Selenium Grid allows for parallel test execution ac

  • Answered by AI

Skills evaluated in this interview

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 

Basic selenium automation questions

Round 3 - Technical 

(2 Questions)

  • Q1. Java oops concepts sql agile methodologies selenium
  • Q2. All testing concepts, sdlc bug life cycle

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and always curious to learn new things
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic testing and selenium questions
Round 3 - Coding Test 

Some scenario based questions

Round 4 - HR 

(1 Question)

  • Q1. Basic job related questions

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

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

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

    Round 1 - Technical 

    (2 Questions)

    • Q1. Can you tell me about yourself?
    • Ans. 

      I am a highly skilled Automation Engineer with a strong background in programming and problem-solving.

      • Experienced in developing automated test scripts using tools like Selenium and Appium

      • Proficient in programming languages such as Java, Python, and C#

      • Familiar with CI/CD pipelines and version control systems like Git

      • Strong analytical skills and attention to detail

      • Excellent communication and teamwork abilities

    • Answered by AI
    • Q2. Topic related to Locators, Waits,Handel Dropdown Menu, OOPS concepts, frame work used in previous organization
    Round 2 - Technical 

    (2 Questions)

    • Q1. Tell me about yourself
    • Ans. 

      I am a highly skilled Automation Engineer with a strong background in programming and problem-solving.

      • Experienced in designing, developing, and implementing automated testing solutions

      • Proficient in programming languages such as Python, Java, and C++

      • Familiar with various automation tools like Selenium and Jenkins

      • Strong analytical skills and attention to detail

      • Excellent communication and teamwork abilities

    • Answered by AI
    • Q2. FrameWoek used, Locators, How to take Screenshot in Selenium,Java program, Handel dropdown menu

    Accenture Interview FAQs

    How many rounds are there in Accenture Automation Engineer interview?
    Accenture interview process usually has 2 rounds. The most common rounds in the Accenture interview process are Technical, Resume Shortlist and HR.
    How to prepare for Accenture 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 Accenture. The most common topics and skills that interviewers at Accenture expect are Consulting, Automation, Python, Automation Testing and Analytics.
    What are the top questions asked in Accenture Automation Engineer interview?

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

    1. What sort of bug fixes I have done earl...read more
    2. 1. What is Selen...read more
    3. Java oops concepts sql agile methodologies selen...read more

    Tell us how to improve this page.

    Accenture Automation Engineer Interview Process

    based on 6 interviews in last 1 year

    1 Interview rounds

    • Technical Round
    View more

    People are getting interviews through

    based on 3 Accenture interviews
    Referral
    Job Portal
    33%
    33%
    34% 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
    Accenture Automation Engineer Salary
    based on 188 salaries
    ₹3.2 L/yr - ₹13 L/yr
    17% more than the average Automation Engineer Salary in India
    View more details

    Accenture Automation Engineer Reviews and Ratings

    based on 13 reviews

    3.7/5

    Rating in categories

    3.8

    Skill development

    3.5

    Work-Life balance

    3.4

    Salary & Benefits

    4.1

    Job Security

    3.9

    Company culture

    3.0

    Promotions/Appraisal

    3.8

    Work Satisfaction

    Explore 13 Reviews and Ratings
    Application Development Analyst
    38.9k salaries
    unlock blur

    ₹3 L/yr - ₹12 L/yr

    Application Development - Senior Analyst
    26.2k salaries
    unlock blur

    ₹6.8 L/yr - ₹20.2 L/yr

    Team Lead
    24.1k salaries
    unlock blur

    ₹7 L/yr - ₹25.2 L/yr

    Senior Software Engineer
    18.3k salaries
    unlock blur

    ₹6 L/yr - ₹19 L/yr

    Software Engineer
    17.6k salaries
    unlock blur

    ₹3.6 L/yr - ₹12.8 L/yr

    Explore more salaries
    Compare Accenture with

    TCS

    3.7
    Compare

    Cognizant

    3.8
    Compare

    Capgemini

    3.8
    Compare

    Infosys

    3.7
    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