Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Deloitte Team. If you also belong to the team, you can get access from here

Deloitte Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Deloitte Automation Tester Interview Questions and Answers

Updated 13 Dec 2024

9 Interview questions

An Automation Tester was asked 6mo ago
Q. What is the difference between black box and white box testing?
Ans. 

Black box testing focuses on functionality without knowledge of internal code, while white box testing examines internal code structure.

  • Black box testing tests the functionality of a system without knowledge of its internal code

  • White box testing tests the internal code structure and logic of a system

  • Black box testing is more focused on end-user perspective

  • White box testing is more focused on developer perspective

  • E...

An Automation Tester was asked 6mo ago
Q. What is the difference between hard assert and soft assert?
Ans. 

Hard assert stops the execution of the test case if it fails, while soft assert continues the execution and logs the failure.

  • Hard assert is used when the failure of a particular step makes the further steps irrelevant.

  • Soft assert is used when you want to continue with the test case execution even if some steps fail.

  • Hard assert is implemented using 'assert' keyword in testing frameworks like TestNG or JUnit.

  • Soft as...

Automation Tester Interview Questions Asked at Other Companies

Q1. 1)Diffrence Between sanity and Smoke 2)What is regression Testing ... read more
asked in TCS
Q2. How to mouse hover an element? Write Xpath for an element? How to ... read more
Q3. How do you validate that the URL loaded is correct?
asked in Deloitte
Q4. There is a table of students having a column named 'status' with ... read more
Q5. Write a Python code to separate numbers and special characters fr ... read more
An Automation Tester was asked 6mo ago
Q. What are the various annotations in Selenium WebDriver?
Ans. 

Annotations in Selenium WebDriver are used to provide additional information about the test methods.

  • Annotations help in organizing and managing test cases

  • Some common annotations in Selenium WebDriver are @Test, @BeforeTest, @AfterTest, @BeforeClass, @AfterClass, @BeforeMethod, @AfterMethod

  • Annotations are used to define the sequence of execution of test methods

An Automation Tester was asked 6mo ago
Q. There are n number of links having the text selenium. Write the syntax to count the text selenium from all the links.
Ans. 

Use XPath to count the number of links with the text 'selenium'

  • Use XPath to locate all the links containing the text 'selenium'

  • Count the number of links found using the XPath expression

What people are saying about Deloitte

View All
an associate2
3d
Deloitte USI ASA2 or RSM USI SA1: Which way to go?
I'm at PwC AC as an Associate 2 with 2 yrs of PQE. Is it smart to join Deloitte USI Assurance as ASA2 (30% Hike)? Won't I be overqualified for that level? I also have an SA1 offer from RSM USI with the same pay (34% hike). Plus, I'm expecting a 10% raise at PwC by July end. Thoughts?
Got a question about Deloitte?
Ask anonymously on communities.
An Automation Tester was asked 6mo ago
Q. Explain the defect life cycle.
Ans. 

Defect life cycle is the process of identifying, reporting, fixing, retesting, and closing defects in software development.

  • Defect identification: Defects are identified through testing or user feedback.

  • Defect reporting: Defects are reported in a defect tracking tool with details like steps to reproduce, severity, and priority.

  • Defect fixing: Developers fix the reported defects based on the information provided.

  • Defe...

An Automation Tester was asked 6mo ago
Q. There is a table of students having a column named 'status' with values 'pass' or 'fail'. Write the syntax to show the output as '60 pass' and '40 fail'.
Ans. 

Use SQL query to display 60 pass and 40 fail from a table of students.

  • Use SELECT statement with COUNT function to count the number of pass and fail statuses.

  • Use WHERE clause to filter out pass and fail statuses.

  • Use GROUP BY clause to group the statuses together.

  • Use CASE statement to display the count of pass and fail statuses.

An Automation Tester was asked
Q. Why is the def keyword used in Selenium?
Ans. 

The def keyword is used in Selenium to define a function or method.

  • Used to define reusable code blocks

  • Helps in organizing code and improving readability

  • Allows for easier maintenance and updates

  • Example: def login(username, password) { //code to login }

Are these interview questions helpful?
An Automation Tester was asked
Q. What is the Page Object Model (POM)?
Ans. 

POM (Page Object Model) is a design pattern used in test automation to create reusable and maintainable code by separating page objects from test scripts.

  • POM helps in improving test script readability and maintenance by keeping the page objects separate from test logic

  • Each page in the application has its own corresponding page object class, which contains all the elements and methods related to that page

  • Test scrip...

An Automation Tester was asked
Q. How do you handle dynamic table elements?
Ans. 

Dynamic table elements can be handled by locating the table, identifying the rows and columns, and using appropriate methods to interact with the data.

  • Locate the table element using a unique identifier such as class, id, or xpath

  • Identify the rows and columns within the table using HTML tags like and

  • Use methods like getText() or getAttribute() to retrieve data from the table cells

  • Handle dynamic changes in the tab...

Deloitte Automation Tester Interview Experiences

2 interviews found

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

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

Round 1 - Technical 

(7 Questions)

  • Q1. Briefing about yourself
  • Q2. Explain Defect life cycle
  • Ans. 

    Defect life cycle is the process of identifying, reporting, fixing, retesting, and closing defects in software development.

    • Defect identification: Defects are identified through testing or user feedback.

    • Defect reporting: Defects are reported in a defect tracking tool with details like steps to reproduce, severity, and priority.

    • Defect fixing: Developers fix the reported defects based on the information provided.

    • Defect re...

  • Answered by AI
  • Q3. Difference between black box and white box testing
  • Ans. 

    Black box testing focuses on functionality without knowledge of internal code, while white box testing examines internal code structure.

    • Black box testing tests the functionality of a system without knowledge of its internal code

    • White box testing tests the internal code structure and logic of a system

    • Black box testing is more focused on end-user perspective

    • White box testing is more focused on developer perspective

    • Exampl...

  • Answered by AI
  • Q4. Difference between hard assert and soft assert
  • Ans. 

    Hard assert stops the execution of the test case if it fails, while soft assert continues the execution and logs the failure.

    • Hard assert is used when the failure of a particular step makes the further steps irrelevant.

    • Soft assert is used when you want to continue with the test case execution even if some steps fail.

    • Hard assert is implemented using 'assert' keyword in testing frameworks like TestNG or JUnit.

    • Soft assert ...

  • Answered by AI
  • Q5. What are the various annotations in selenium webdriver
  • Ans. 

    Annotations in Selenium WebDriver are used to provide additional information about the test methods.

    • Annotations help in organizing and managing test cases

    • Some common annotations in Selenium WebDriver are @Test, @BeforeTest, @AfterTest, @BeforeClass, @AfterClass, @BeforeMethod, @AfterMethod

    • Annotations are used to define the sequence of execution of test methods

  • Answered by AI
  • Q6. There are n no. Of links having the text selenium. Write the syntax to count the text selenium from all the links
  • Ans. 

    Use XPath to count the number of links with the text 'selenium'

    • Use XPath to locate all the links containing the text 'selenium'

    • Count the number of links found using the XPath expression

  • Answered by AI
  • Q7. There is a table of students having column status with either pass or fail. Write the syntax to show the output as some 60 pass and 40 fail.
  • Ans. 

    Use SQL query to display 60 pass and 40 fail from a table of students.

    • Use SELECT statement with COUNT function to count the number of pass and fail statuses.

    • Use WHERE clause to filter out pass and fail statuses.

    • Use GROUP BY clause to group the statuses together.

    • Use CASE statement to display the count of pass and fail statuses.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Introduce your self.
  • Q2. Why does def keyword used in selenium
  • Ans. 

    The def keyword is used in Selenium to define a function or method.

    • Used to define reusable code blocks

    • Helps in organizing code and improving readability

    • Allows for easier maintenance and updates

    • Example: def login(username, password) { //code to login }

  • Answered by AI
  • Q3. What is POM model
  • Ans. 

    POM (Page Object Model) is a design pattern used in test automation to create reusable and maintainable code by separating page objects from test scripts.

    • POM helps in improving test script readability and maintenance by keeping the page objects separate from test logic

    • Each page in the application has its own corresponding page object class, which contains all the elements and methods related to that page

    • Test scripts in...

  • Answered by AI
  • Q4. How to handle dynamic table element
  • Ans. 

    Dynamic table elements can be handled by locating the table, identifying the rows and columns, and using appropriate methods to interact with the data.

    • Locate the table element using a unique identifier such as class, id, or xpath

    • Identify the rows and columns within the table using HTML tags like and

    • Use methods like getText() or getAttribute() to retrieve data from the table cells

    • Handle dynamic changes in the table by...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Three round. Each had one market sizing case study.
  • Q2. Layout of your approach is most important. Clearly communicating thoughts, making the interview interactive are key points for any management consulting interview. You dont need an absolute answer. What ma...

Associate Interview Questions & Answers

PwC user image Anonymous

posted on 30 Dec 2022

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

I applied via Referral and was interviewed before Dec 2021. There were 5 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 - Aptitude Test 

Exam which will have logical , verbal and technical related mcqs

Round 3 - Group Discussion 

Group discussion with 5 to 10 people

Round 4 - Technical 

(1 Question)

  • Q1. Oops concepts, dbms, cloud, proj5
Round 5 - HR 

(1 Question)

  • Q1. About any prior experience and why pwc

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics of skills which you have mentioned in resume

What people are saying about Deloitte

View All
an associate2
3d
Deloitte USI ASA2 or RSM USI SA1: Which way to go?
I'm at PwC AC as an Associate 2 with 2 yrs of PQE. Is it smart to join Deloitte USI Assurance as ASA2 (30% Hike)? Won't I be overqualified for that level? I also have an SA1 offer from RSM USI with the same pay (34% hike). Plus, I'm expecting a 10% raise at PwC by July end. Thoughts?
Got a question about Deloitte?
Ask anonymously on communities.

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. General technical questions about java, jdbc, mysql and about cloud, then what is the challenge faced by you in your life.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patient, to become the key of success

I applied via Referral and was interviewed in Feb 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical Question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared well

Interview Questionnaire 

1 Question

  • Q1. What are the steps in revenue recognition under Ind As 115?
  • Ans. 

    Steps in revenue recognition under Ind AS 115

    • Identify the contract with the customer

    • Identify the performance obligations in the contract

    • Determine the transaction price

    • Allocate the transaction price to the performance obligations

    • Recognize revenue when (or as) the entity satisfies a performance obligation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study Ind AS and AS
Are these interview questions helpful?

I applied via Referral and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How do you value a company
  • Ans. 

    Valuing a company involves analyzing its financial statements, market trends, and future growth potential.

    • Analyze financial statements such as balance sheets, income statements, and cash flow statements

    • Consider market trends and competition

    • Evaluate the company's management team and their track record

    • Assess the company's future growth potential and any potential risks

    • Use valuation methods such as discounted cash flow an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple question - can be answered based on basic finance knowledge

Associate Interview Questions & Answers

PwC user image Anonymous

posted on 19 Aug 2021

Interview Questionnaire 

2 Questions

  • Q1. What is cloud?
  • Ans. 

    Cloud refers to the delivery of computing services, including servers, storage, databases, networking, software, analytics, and intelligence, over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • Cloud services are typically provided by third-party companies, such as Amazon Web Services, Microsoft Azure, and Google Cloud.

    • Cloud computing can be used for ...

  • Answered by AI
  • Q2. What are the fundamentals of cloud
  • Ans. 

    Cloud computing is the delivery of on-demand computing services over the internet.

    • Cloud computing provides access to computing resources such as servers, storage, databases, and software over the internet.

    • It allows users to scale up or down their resources as needed, paying only for what they use.

    • Cloud computing offers flexibility, reliability, and security.

    • Examples of cloud services include Amazon Web Services, Micros...

  • Answered by AI

Skills evaluated in this interview

Associate Interview Questions & Answers

PwC user image Ranajoy Paul

posted on 22 Aug 2021

Interview Questionnaire 

1 Question

  • Q1. General Accounting Concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive and be explanatory with your answers with your accounting knowledge

Deloitte Interview FAQs

How many rounds are there in Deloitte Automation Tester interview?
Deloitte interview process usually has 1 rounds. The most common rounds in the Deloitte interview process are Technical.
How to prepare for Deloitte Automation Tester 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 Deloitte. The most common topics and skills that interviewers at Deloitte expect are Automation Testing, API Testing, Java, Java Selenium and Pipeline.
What are the top questions asked in Deloitte Automation Tester interview?

Some of the top questions asked at the Deloitte Automation Tester interview -

  1. There is a table of students having column status with either pass or fail. Wri...read more
  2. There are n no. Of links having the text selenium. Write the syntax to count th...read more
  3. What are the various annotations in selenium webdri...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

PwC Interview Questions
3.3
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.2k Interviews
KPMG India Interview Questions
3.4
 • 844 Interviews
ZS Interview Questions
3.3
 • 476 Interviews
BCG Interview Questions
3.7
 • 203 Interviews
Bain & Company Interview Questions
3.9
 • 111 Interviews
WSP Interview Questions
4.2
 • 99 Interviews
Mercer Interview Questions
3.6
 • 89 Interviews
View all
Deloitte Automation Tester Salary
based on 37 salaries
₹4 L/yr - ₹11.3 L/yr
28% more than the average Automation Tester Salary in India
View more details

Deloitte Automation Tester Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

4.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Consultant
40k salaries
unlock blur

₹10 L/yr - ₹21.5 L/yr

Senior Consultant
24.8k salaries
unlock blur

₹16.6 L/yr - ₹33.3 L/yr

Analyst
16.6k salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Assistant Manager
11.3k salaries
unlock blur

₹12.1 L/yr - ₹22 L/yr

Manager
7.9k salaries
unlock blur

₹24.6 L/yr - ₹43.7 L/yr

Explore more salaries
Compare Deloitte with

Accenture

3.7
Compare

PwC

3.3
Compare

Ernst & Young

3.4
Compare

Cognizant

3.7
Compare
write
Share an Interview