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 7mo 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...

An Automation Tester was asked 7mo 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.

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 7mo 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

An Automation Tester was asked 7mo 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

What people are saying about Deloitte

View All
wiseshirataki
Verified Icon
3d
works at
Microsoft Corporation
Offer joining confusion
I have an offer from Deloitte India (as a Deputy Manager - Enterprise Security) and Novartis (Specialist - Microsoft Sentinel). I hear a lot of negative feedback about the work culture of Deloitte India while there is not so much positivity about Novartis as well. Can someone working at these orgs share their thoughts? I have also heard there is quite a lot of travel required in Deloitte India, if someone has similar or even opposing thoughts, please share.
Got a question about Deloitte?
Ask anonymously on communities.
An Automation Tester was asked 7mo 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...

What are the roles & responsibilities of a Automation Tester at Deloitte?

Test Framework Development

  • Design, develop, and maintain automated test frameworks and scripts
  • Develop automation frameworks for API testing

Read full roles & responsibilities

An Automation Tester was asked 7mo 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...

Deloitte HR Interview Questions

714 questions and answers

Q. Tell me about your previous internship experience.
Q. Can you describe your technical skills?
Q. Did you manage individual projects?
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...

Are these interview questions helpful?
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 }

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...

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
  • Q3. Difference between black box and white box testing
  • 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
  • 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

I applied via Walk-in

Interview Preparation Tips

Round: Case Study Interview
Experience: Here we had to look at alternatives, such as cost of wearing glasses all your life, and the amount you would be spending, and discounting the amount you spend each year. I mentioned the cost of glasses, doctor visits, contacts, also laser surgery etc, to finally compute the price.
The second case which I got in the 3rd round, was also about a medical company which was facing a problem of falling profits. Here there were several problems, low productivity, and falling sales as well. Here the sales force was required to convince the doctors about its products, as they would then prescribe the medicines. Important thing here was whether they were targeting the right doctors who had a lot of patients, whether doctors were already loyal to some other company etc.
Tips: Practising a lot of cases not only with others, but also going through solutions on your own helps a lot. It is important to keep analyzing your mistakes rather than doing a lot of cases. HR answers are probably even more important than the case themselves, so it is important to prepare them well in advance.

Skills: Case Solving Ability, Case Analysis
College Name: IIM Lucknow

I applied via Walk-in

Interview Questionnaire 

1 Question

  • Q1. Why is a new terminal at an airport required?

Interview Preparation Tips

Round: Case Study Interview
Experience: LHR airport is building Terminal 5. Why? Identified the purpose of terminals, and its physical layout. Defined capacity as throughput of baggage (big mistake: capacity here was supposed to be that of airport with runways being the bottleneck!!). Compared capacity of T-5 with that of other terminals. Basically, T-5 is being built to accommodate the A380. I knew this from my GK but didn’t exactly shine through in the interview.
Identified it as an operations issue. After that everything went downhill. About halfway through the interview, I realized that I was dinged anyhow (I’d have rejected me had I been the interviewer), so there was less pressure and I had a relaxed time with the case after that.
Tips: Don’t neglect operations based cases. These were the least favorite ones of mine during prep. Even if interviewer is hostile, keep a cool head and think logically, don’t let the pressure get to you

Skills: Case Solving Ability, Case Analysis
College Name: Indian School Of Business (ISB)

Associate Interview Questions & Answers

PwC user image Anonymous

posted on 13 May 2018

Interview Questionnaire 

1 Question

  • Q1. Normally they asked from CMA Syllabus

Interview Preparation Tips

Round: Test
Experience: Syllabus for written test is CMA Syllabus, general knowledge in Computer.

Associate Interview Questions & Answers

PwC user image Anonymous

posted on 10 May 2018

I applied via Approached by Company and was interviewed in Aug 2017. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Solve few SQL joins.
  • Ans. 

    SQL joins combine data from multiple tables based on related columns, enabling complex queries and data analysis.

    • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.a_id;

    • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.a_id;

    • RIGHT JOIN: Returns all records from the r...

  • Answered by AI
  • Q2. .Net developer profile and the technologies I can get, everything was eye wash post joining

Interview Preparation Tips

Round: Manager + Lead round (not sure what kind of round is this)
Experience: details about the work profile, most of which never happened post joining.

General Tips: If you come from technical background, please do not join PwC SDC and jeopardize our career. There is no technical setup, neither any infrastructure, technical work wont just happen except for few bits n pieces UI work here n there. This is not a company for technical people.
Skills: Communication
Duration: 1-4 weeks

Associate Interview Questions & Answers

PwC user image Anonymous

posted on 20 Jan 2015

Interview Questionnaire 

5 Questions

  • Q1. Why PWC?
  • Ans. 

    PWC is a leading global professional services firm with a strong reputation for excellence and innovation.

    • PWC has a diverse range of clients across various industries

    • PWC offers a wide range of services including audit, tax, and consulting

    • PWC has a strong focus on innovation and technology

    • PWC provides excellent opportunities for career growth and development

    • PWC has a strong commitment to corporate responsibility and sus...

  • Answered by AI
  • Q2. What do you know about PWC?
  • Ans. 

    PWC is a multinational professional services network.

    • Provides audit, tax, and consulting services to various industries

    • Has a presence in over 157 countries

    • Ranked as the world's second-largest professional services network

    • Clients include major corporations, governments, and non-profit organizations

  • Answered by AI
  • Q3. Strengths and weaknesses
  • Q4. Location preference
  • Q5. Random questions:-How do earthquakes occur? What is metamorphosis?
  • Ans. 

    Earthquakes occur due to the movement of tectonic plates. Metamorphosis is the process of transformation in living organisms.

    • Earthquakes occur when two tectonic plates move against each other, causing a release of energy in the form of seismic waves.

    • Metamorphosis is a process of transformation in living organisms, where an organism undergoes a physical change in form and structure.

    • Examples of metamorphosis include the ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: CAT type questions were asked.
Duration: 60 minutes

Round: Technical Interview
Experience: As it was open for all departments, questions of a general kind about project and internship were asked. Favourite area and basic questions on it.

Round: HR Interview
Tips: Looking for people with good communication skills.

General Tips: If performance is good, chance to move to the consulting arm from the accounting arm, which handles financial advisory, etc.
College Name: IIT KANPUR

Associate Interview Questions & Answers

PwC user image Anonymous

posted on 25 Jan 2015

Interview Preparation Tips

Round: Test
Experience: General ability test. People studying for CAT can easily clear it.

Round: HR Interview
Experience: Asked some HR stuff such as why I want to join PWC, what according to me is a leader etc. In technical, they asked me from DSP which was my field of specialization so I did well in that. So overall it was a cool interview.

College Name: IIT KANPUR

Associate Interview Questions & Answers

PwC user image Nishita Karad

posted on 21 Nov 2015

I applied via Company Website

Interview Questionnaire 

3 Questions

  • Q1. Describe a time where you showed leadership skills
  • Q2. Describe a time where you handled a difficult situation
  • Ans. 

    Handled a difficult situation by calming down an angry customer

    • Listened to the customer's complaint patiently

    • Empathized with the customer and apologized for the inconvenience caused

    • Offered a solution to the problem and explained the steps to be taken

    • Followed up with the customer to ensure their satisfaction

  • Answered by AI
  • Q3. Describe a scenario where you demonstrated your ability to communicate effectively

Interview Preparation Tips

Round: Behavioural Interview
Experience: The behavioral interview for PwC UK is usually conducted by telephone and then the final interview which includes a behavioral component happens in the last stage. The interview was a great experience and I enjoyed speaking to the interviews on both occasions. I spent sometime getting familiar with PwC's core competencies and prepared examples from my life that reflected these competencies. It was also useful to practice these questions in front of the mirror as it helped me to restructure my answers well. All in all, it was a friendly experience and the interviewers are looking to know you better. Just be confident, smile and be yourself. A "rattofied-textbook" answer will surely get you rejected, instead speak what you really believe in and let it be authentic!
Tips: Use the STAR technique to answer behavioral interview questions :-
S (Situation) - What was the situation? Give the context in approx 1-2 lines for the interviewer to understand the situation.
T (Task) - What was the task that you were required to do? Eg. Group project, team task etc.
A (Action) - What did YOU do? Focus on your actions NOT that of the team. Eg. I managed my time by prioritizing my responsibilities. Or, I spoke to my team leader about the problem. Or, I researched the current market trends in XYZ.
R (Result) - What was the end result? Eg: I completed the task in time. Or, The group increased the productivity by x%.




Round: Assessment day
Experience: After being successful in the telephone interview I was invited to attend an Assessment Day at the PwC office in London. We had a series of tasks throughout the day which included a case study, group task and client interview. It is quite rigorous and the day was quite exhausting.
Tips: Complete all the tasks in the given time. You will be marked down if you fail to finish.
Try to be inclusive in the group discussions. Use names of participants while talking to them.

General Tips: The recruitment process is designed if you are a right fit in the company, It's equally important for you to judge if the company is the right fit for you. Talk to people in the company, explore company resources, search news articles about the company, and most important - follow your instinct!
Skills:
College Name: London School of Economics

Associate Interview Questions & Answers

PwC user image Anonymous

posted on 17 Jan 2015

Interview Preparation Tips

Round: Resume Shortlist
Experience: I first created a master resume and got it reviewed by others.
Tips: Spend enough time in preparing your master resume. Have a resume ready for all the sectors you are targeting. Start as early as possible and get your one page resume ready well in time before the deadline.

Round: Test
Tips: Practice a lot. Prefer practicing in a group and attempt timed tests. Also try out puzzles.

Round: Interview
Experience: There were two rounds, each with a single member panel.
They asked a few HR questions initially followed by a case study. The HR questions were diverse, like how would you handle different scenarios in work and about books I read. I was grilled with these questions.
The case was easy but I presented it in an unstructured manner, but I was able to give a decent solution in the end.

Round: Interview
Experience: The second round started off with a case in which I performed relatively better. The interviewer then asked me if I had any questions for him, and that's when I started talking about the analytics industry. This went on for 15 minutes, and I think this sealed the deal for me.

General Tips: Identify the companies you want to target. Be pragmatic in your choice and prepare accordingly. n
Prepare in a group.
Remember that Resume is one important aspect.
College Name: IIT KANPUR

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
Deloitte Automation Tester Salary
based on 42 salaries
₹4.5 L/yr - ₹10.5 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
41.8k salaries
unlock blur

₹10.3 L/yr - ₹21.7 L/yr

Senior Consultant
25.8k salaries
unlock blur

₹16.4 L/yr - ₹33.6 L/yr

Analyst
17.1k salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Assistant Manager
11.6k salaries
unlock blur

₹12.1 L/yr - ₹22.5 L/yr

Manager
8.2k salaries
unlock blur

₹25.2 L/yr - ₹45 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