Upload Button Icon Add office photos

Filter interviews by

Accenture Automation Test Engineer Interview Questions, Process, and Tips

Updated 26 Nov 2024

Top Accenture Automation Test Engineer Interview Questions and Answers

  • Q1. 1.types of wait, 2. Locators in selenium 3.grid vs webdriver 4.css selector vs xpath 5.types of list 6. What is use of action class 7.java script executor 8.interfaces 9. ...read more
  • Q2. Explain the automation framework that you have worked on
  • Q3. Write syntax to take the screenshot in selenium python
View all 20 questions

Accenture Automation Test Engineer Interview Experiences

19 interviews found

Interview Questionnaire 

1 Question

  • Q1. 1.types of wait, 2. Locators in selenium 3.grid vs webdriver 4.css selector vs xpath 5.types of list 6. What is use of action class 7.java script executor 8.interfaces 9.oops concepts 10.windows/alert nagi...
  • Ans. 

    Interview questions for Automation Test Engineer

    • Types of wait - implicit, explicit, fluent

    • Locators in Selenium - ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector, XPath

    • Grid vs WebDriver - Grid allows parallel execution on multiple machines, WebDriver executes tests on a single machine

    • CSS Selector vs XPath - CSS Selector is faster, XPath is more powerful

    • Types of list - ArrayList, LinkedList, Ve...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Write a program to reverse a number
  • Ans. 

    Program to reverse a number

    • Convert the number to a string to easily manipulate each digit

    • Iterate through the string in reverse order and append each digit to a new string

    • Convert the reversed string back to an integer and return

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What are your expectations

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
asked in Infosys
Q2. Introduce yourself 1.What is STLC 2. difference between Test plan ... read more
Q3. What is Automation? what is selenium?what is xpath? what is regre ... read more
asked in TCS
Q4. 1) cucumber 2) Defects worked on, tell me about the bugs you foun ... read more
asked in Capgemini
Q5. 1] Introduction 2] Sanity Vs Smoke testing 3] Waits in selenium a ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Reverse a string , explain automation framework
  • Ans. 

    Reverse a string using automation framework

    • Use a programming language like Java or Python to write a function that reverses a given string

    • Utilize automation testing tools like Selenium or Appium to automate the process of inputting a string and verifying the reversed output

    • Create test cases to ensure the string reversal functionality works correctly in different scenarios

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to handle popup in source page?
  • Ans. 

    To handle popups in source page, use switchTo().alert() method in Selenium WebDriver.

    • Use switchTo().alert() method to switch focus to the popup

    • Use getText() method to get the text from the popup

    • Use accept() method to click on the OK button in the popup

    • Use dismiss() method to click on the Cancel button in the popup

  • Answered by AI
  • Q2. How to automate captcha in selenium ?
  • Ans. 

    Automating captcha in Selenium can be challenging but can be achieved using third-party services or by bypassing the captcha.

    • Use third-party captcha solving services like 2Captcha or AntiCaptcha

    • Implement a custom solution to bypass the captcha by directly interacting with the captcha element

    • Use headless browsers like PhantomJS to automate captcha handling

  • Answered by AI

Skills evaluated in this interview

Accenture interview questions for designations

 Senior Automation Test Engineer

 (3)

 Automation Test Analyst

 (4)

 Automation Test Lead

 (3)

 Test Automation Architect

 (1)

 Automation Test Specialist

 (1)

 Sdet Automation Test Engineer

 (2)

 Python Automation Test Engineer

 (1)

 Tosca Automation Test Engineer

 (1)

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

(1 Question)

  • Q1. What is xpath in selenium
  • Ans. 

    XPath in Selenium is a locator strategy used to navigate through the HTML structure of a web page to identify elements.

    • XPath stands for XML Path Language.

    • It is used to locate elements on a web page by their XML path.

    • XPath expressions can be used to select nodes or elements in an XML document.

    • It can be used to identify elements based on their attributes, text content, position, etc.

    • XPath can be absolute or relative, wit...

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Accenture Interview Questions

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

(5 Questions)

  • Q1. What is selenium
  • Ans. 

    Selenium is a popular open-source automation testing tool used for web application testing.

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

    • It allows testers to write test scripts in a variety of IDEs like Eclipse, IntelliJ, etc.

    • Selenium can automate interactions with web browsers like Chrome, Firefox, etc.

    • It can perform various testing tasks such as form filling, button clicking, data extrac

  • Answered by AI
  • Q2. Explain different components of selenium
  • Ans. 

    Selenium is a suite of tools used for automating web browsers.

    • Selenium IDE: Record and playback tool for creating automated tests

    • Selenium WebDriver: Automation tool for writing test scripts in various programming languages

    • Selenium Grid: Distributes test execution on multiple machines for parallel testing

    • Selenium RC (Remote Control): Deprecated tool for running tests in multiple browsers

  • Answered by AI
  • Q3. Difference between findelement and findelement
  • Ans. 

    findelement is a method used in Selenium to locate a single web element on a webpage, while findelements is used to locate multiple web elements.

    • findelement returns the first matching element found on the webpage

    • findelements returns a list of all matching elements found on the webpage

    • findelement is used when only one element needs to be located, while findelements is used when multiple elements need to be located

  • Answered by AI
  • Q4. Different types of wait
  • Ans. 

    Different types of wait include implicit, explicit, and fluent waits in automation testing.

    • Implicit wait: Waits for a certain amount of time before throwing a NoSuchElementException if the element is not found.

    • Explicit wait: Waits for a certain condition to be met before proceeding further in the code.

    • Fluent wait: Waits for a condition to be met with a defined polling frequency and timeout.

    • Example: Using implicit wait ...

  • Answered by AI
  • Q5. Difference between close and wait
  • Ans. 

    Close is used to close a window or application, while wait is used to pause the execution for a specified amount of time.

    • Close is used to close a window or application after the test is completed

    • Wait is used to pause the execution for a specified amount of time, such as waiting for an element to load before proceeding

    • Example: driver.close() will close the current window, while Thread.sleep(5000) will pause the executio

  • Answered by AI

Skills evaluated in this interview

Automation Test Engineer Jobs at Accenture

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. 1 programming coding 1 framework related coding question Remaining theory questions
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. 1. Give me more info about your current automation framework? 2. Basic selenium question like screenshot syntax, exception handeling in java etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic of java and selenium. You can focus more on your framework used in your current company like which design pattern is used and basic concepts of OOPs used in the framework.

Automation Test Engineer interview

user image RD Automation Learning

posted on 16 Nov 2021

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What do you know about jira
  • Q2. How to log a bug
  • Ans. 

    To log a bug, follow these steps

    • First, identify the bug by reproducing it consistently

    • Next, gather all necessary information such as screenshots, logs, and steps to reproduce

    • Then, log into the bug tracking system and create a new bug report

    • Provide a clear and detailed description of the bug, including the expected and actual behavior

    • Assign the bug to the appropriate team member for further investigation and resolution

  • Answered by AI

Skills evaluated in this interview

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

Round 1 - Technical 

(2 Questions)

  • Q1. Reverse string array
  • Q2. Exception handling
Round 2 - Technical 

(2 Questions)

  • Q1. Explain framework
  • Ans. 

    A framework is a set of guidelines, libraries, and tools that help in developing and executing automated tests efficiently.

    • Provides structure and organization for test automation code

    • Promotes reusability of code and components

    • Offers built-in functions and utilities for common testing tasks

    • Supports integration with test management tools

    • Examples: Selenium WebDriver, TestNG, Cucumber

  • Answered by AI
  • Q2. Day to day work

Skills evaluated in this interview

Accenture Interview FAQs

How many rounds are there in Accenture Automation Test Engineer interview?
Accenture interview process usually has 1-2 rounds. The most common rounds in the Accenture interview process are Technical, One-on-one Round and HR.
How to prepare for Accenture 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 Accenture. The most common topics and skills that interviewers at Accenture expect are Automation Testing, Quality Engineering, Selenium, Software Testing and Java.
What are the top questions asked in Accenture Automation Test Engineer interview?

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

  1. 1.types of wait, 2. Locators in selenium 3.grid vs webdriver 4.css selector vs ...read more
  2. Explain the automation framework that you have worked...read more
  3. Write syntax to take the screenshot in selenium pyt...read more

Tell us how to improve this page.

Accenture Automation Test Engineer Interview Process

based on 12 interviews in last 1 year

1 Interview rounds

  • Technical Round
View more

People are getting interviews through

based on 12 Accenture interviews
Job Portal
Referral
Company Website
58%
25%
8%
9% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.
Accenture Automation Test Engineer Salary
based on 1.4k salaries
₹4 L/yr - ₹13 L/yr
12% more than the average Automation Test Engineer Salary in India
View more details

Accenture Automation Test Engineer Reviews and Ratings

based on 75 reviews

4.3/5

Rating in categories

3.9

Skill development

4.0

Work-Life balance

3.7

Salary & Benefits

4.1

Job Security

4.2

Company culture

3.5

Promotions/Appraisal

3.9

Work Satisfaction

Explore 75 Reviews and Ratings
Test Automation Engineer

Nagpur

3-8 Yrs

Not Disclosed

Test Automation Engineer

Jaipur

3-8 Yrs

Not Disclosed

Test Automation Engineer

Hyderabad / Secunderabad

3-5 Yrs

₹ 4.8-13.6 LPA

Explore more jobs
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.3 L/yr

Senior Software Engineer
18.4k 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