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 Selenium Automation Tester Interview Questions and Answers

Updated 23 Aug 2024

Deloitte Selenium Automation Tester Interview Experiences

1 interview found

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

Find a middle element and largest element from an array using hashmap.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on java concept.

Interview questions from similar companies

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

I appeared for an interview in May 2023.

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. HVAC, FLS & Experience
Round 3 - Technical 

(1 Question)

  • Q1. Software Proficiency Test
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2022. There were 3 interview rounds.

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 - Coding Test 

It depends on the region, for me they conducted tool test in the 1st round.

Round 3 - Technical 

(2 Questions)

  • Q1. Technical questions on previously done projects
  • Q2. About software and tool proficiency

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your work( for experienced guys)

I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. I ask basic OOPS Questoins
  • Q2. Questions on web api
  • Q3. Questions on SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with basics . No one knows everything. Be good in what you know.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Hacker Rank test with medium difficulty

Round 2 - Technical 

(1 Question)

  • Q1. Technical discussion mainly around system design, different architectures, problem solving and coding question may be asked.
Round 3 - Case Study 

A case study for a problem statement

I appeared for an interview in Apr 2021.

Round 1 - Video Call 

(8 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started with some basic questions from Software Testing and then the interviewer started asking some questions from Automation Testing.

  • Q1. Can you explain the Software Testing Life Cycle (STLC)?
  • Ans. 

    STLC is a systematic approach to software testing that defines the testing process from start to finish.

    • STLC consists of phases like requirement analysis, test planning, test design, test execution, and test closure.

    • Each phase has specific goals and deliverables to ensure the quality of the software.

    • STLC helps in identifying defects early in the development cycle, reducing the cost of fixing them later.

    • It ensures that ...

  • Answered by AI
  • Q2. What is the difference between a Test Stub and a Test Driver?
  • Ans. 

    Test Stub simulates the behavior of a module that a component depends on, while Test Driver controls the execution of the test case.

    • Test Stub is used to simulate the behavior of a module that a component depends on.

    • Test Driver is used to control the execution of the test case and interact with the component being tested.

    • Test Stub provides canned answers to calls made during the test, while Test Driver initiates the tes...

  • Answered by AI
  • Q3. What do you mean by data flow testing?
  • Ans. 

    Data flow testing is a type of white box testing that focuses on the paths that data takes through the application.

    • It involves tracing the flow of data through the application to identify any potential issues or errors.

    • Data flow testing helps in ensuring that data is processed correctly and efficiently.

    • Examples of data flow testing techniques include control flow testing, data dependency testing, and variable definitio...

  • Answered by AI
  • Q4. What is boundary value analysis?
  • Ans. 

    Boundary value analysis is a software testing technique used to identify errors at boundaries of input ranges.

    • It involves testing the boundaries of input ranges, including minimum, maximum, and just beyond the boundaries.

    • Helps in identifying errors that may occur at the edges of input values.

    • Example: If a system accepts values from 1 to 100, boundary value analysis would test inputs like 0, 1, 100, and 101.

    • It is a blac...

  • Answered by AI
  • Q5. What are the different parts of a test automation framework?
  • Ans. 

    A test automation framework consists of different components that help in organizing and executing automated tests efficiently.

    • Test scripts: Actual test cases written in a programming language like Java or Python.

    • Test data: Input data required for executing the test cases.

    • Test environment: Configuration settings for executing tests on different platforms.

    • Reporting: Generation of test reports to analyze test results.

    • Log...

  • Answered by AI
  • Q6. What are some of the best practices in test automation?
  • Ans. 

    Best practices in test automation include proper planning, maintenance, collaboration, and continuous improvement.

    • Create a solid test automation strategy before starting automation efforts.

    • Use version control to manage test scripts and ensure traceability.

    • Regularly review and update test scripts to maintain relevance and accuracy.

    • Collaborate with developers and other team members to align automation efforts with develo...

  • Answered by AI
  • Q7. How do you automate the testing of CAPTCHA?
  • Ans. 

    Automating CAPTCHA testing involves using third-party services or implementing custom solutions.

    • Use third-party services like 2Captcha or Anti-Captcha to solve CAPTCHAs programmatically.

    • Implement custom solutions using image recognition libraries like OpenCV to identify and solve CAPTCHAs.

    • Integrate CAPTCHA solving functionality into your Selenium automation scripts for seamless testing.

  • Answered by AI
  • Q8. What is Protractor?
  • Ans. 

    Protractor is an end-to-end test framework for Angular and AngularJS applications.

    • Protractor is built on top of WebDriverJS and uses Jasmine for test syntax.

    • It is specifically designed to test Angular and AngularJS applications.

    • Protractor can interact with elements on the page using locators like model, binding, repeater, etc.

    • It supports both synchronous and asynchronous testing.

    • Protractor can handle Angular-specific t...

  • Answered by AI
Round 2 - Video Call 

(7 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had questions majorly from Selenium and Cucumber.

  • Q1. What are the different components of Selenium?
  • Ans. 

    Selenium has four main components: Selenium IDE, Selenium WebDriver, Selenium Grid, and Selenium RC.

    • Selenium IDE: Record and playback tool for creating test cases.

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

    • Selenium Grid: Tool for running tests on multiple machines in parallel.

    • Selenium RC (Remote Control): Deprecated component for running tests on different browsers.

  • Answered by AI
  • Q2. Why should Selenium be selected as a testing tool for web applications or systems?
  • Ans. 

    Selenium is a popular choice for web application testing due to its open-source nature, cross-browser compatibility, and robust automation capabilities.

    • Selenium is open-source, making it cost-effective for organizations.

    • Selenium supports multiple programming languages like Java, Python, and C#, providing flexibility to automation testers.

    • Selenium offers cross-browser compatibility, allowing tests to be run on different...

  • Answered by AI
  • Q3. What is the difference between Selenium and Cucumber?
  • Ans. 

    Selenium is a testing framework for web applications, while Cucumber is a tool for behavior-driven development.

    • Selenium is a testing framework used for automating web applications, while Cucumber is a tool for behavior-driven development (BDD).

    • Selenium supports multiple programming languages like Java, Python, etc., while Cucumber uses Gherkin syntax for writing test cases.

    • Selenium focuses on automating the testing pro...

  • Answered by AI
  • Q4. Can you explain the JUnit annotations that are linked with Selenium?
  • Ans. 

    JUnit annotations like @Before, @Test, @After are used in Selenium for setup, execution, and teardown of test cases.

    • Annotations like @Before are used to set up preconditions before each test method is executed.

    • Annotations like @Test are used to mark a method as a test method.

    • Annotations like @After are used to clean up after each test method is executed.

    • Annotations like @BeforeClass and @AfterClass are used for setup a...

  • Answered by AI
  • Q5. How can you run a selected test from a group of tests in Cucumber?
  • Ans. 

    To run a selected test from a group of tests in Cucumber, you can use tags to specify which test to run.

    • Add tags to the scenarios in your feature files

    • Use the @CucumberOptions annotation in your test runner class to specify the tags to include or exclude

    • Run the test using the test runner class with the specified tags

  • Answered by AI
  • Q6. What is grouping in the context of Cucumber?
  • Ans. 

    Grouping in Cucumber allows for organizing related scenarios into logical groups for better management and execution.

    • Grouping helps in organizing related scenarios together for better readability and maintenance.

    • Tags are used to group scenarios in Cucumber.

    • Grouping allows for running specific sets of scenarios based on tags.

    • Grouping can be used to run scenarios in parallel or sequentially.

    • Example: @smokeTest tag can be...

  • Answered by AI
  • Q7. Can you explain briefly how Behavioral Driven Development (BDD) works?
  • Ans. 

    BDD is a software development approach that encourages collaboration between developers, testers, and business stakeholders.

    • BDD focuses on defining the behavior of a system through examples in plain text

    • Uses a common language (like Gherkin syntax) to describe the expected behavior

    • Tests are written in a way that they can be easily understood by non-technical stakeholders

    • Promotes communication and collaboration between d...

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This is a cultural fitment testing round. HR was very frank and asked standard questions. Then we discussed about my
role.

  • Q1. Why should we hire you?
  • Q2. What is something about you that is not included in your resume?

Interview Preparation Tips

Eligibility criteriaAbove 1 years of experienceErnst & Young (EY) interview preparation:Topics to prepare for the interview - Software Testing , Selenium , Cucumber , API Testing , Automation TestingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Dsa questions like search sort

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

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

Round 1 - Technical 

(1 Question)

  • Q1. SQL databse,oops
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. What challenges did you face in your recent project?
  • Ans. 

    I faced challenges in coordinating with offshore team members and managing tight deadlines.

    • Coordinating with offshore team members in different time zones

    • Managing tight deadlines and ensuring timely delivery of automation scripts

    • Dealing with unexpected changes in project requirements

  • Answered by AI
  • Q2. What are the roles and responsibilities in your current project?
  • Ans. 

    In my current project, I am responsible for designing, developing, and executing automated test scripts using Selenium.

    • Designing test cases and scenarios for automation

    • Developing automated test scripts using Selenium WebDriver

    • Executing test scripts and analyzing results

    • Identifying and reporting defects

    • Collaborating with developers and QA team to ensure quality of the software

  • Answered by AI
  • Q3. Code: take your name as input and print every letter separately and if any vowel is repeated print those vowels.
  • Ans. 

    The code takes a name as input, prints each letter separately, and identifies repeated vowels.

    • Create a function that takes a string input for the name

    • Iterate through each letter in the name and print it separately

    • Track the vowels and check for repetitions to print repeated vowels

  • Answered by AI
  • Q4. What is Fluent Wait?
  • Ans. 

    Fluent Wait is a dynamic wait mechanism in Selenium that waits for a certain condition to be met before proceeding.

    • Fluent Wait is used to define the maximum amount of time to wait for a condition, as well as the frequency with which to check the condition.

    • It can be customized with different polling intervals and exceptions to ignore.

    • Example: WebDriverWait wait = new WebDriverWait(driver, 10); wait.pollingEvery(Duration...

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

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

    • findElement returns a single WebElement matching the specified locator, while findElements returns a list of WebElements.

    • findElement throws NoSuchElementException if no matching element is found, while findElements returns an empty list.

    • Example: WebElement element = driver.findElement(By.id("userna...

  • Answered by AI

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my skills, experience, and industry standards.

    • Research industry standards: For example, analysts in my region typically earn between $60,000 and $80,000.

    • Consider my experience: With 3 years in data analysis, I believe a salary towards the higher end is justified.

    • Highlight skills: My proficiency in SQL and data visualization tools adds value, warranting a competitive salary.

    • Flexibi...

  • Answered by AI
  • Q2. Share details of your previous job.
  • Ans. 

    In my previous role as an Analyst, I focused on data analysis, reporting, and strategic recommendations to drive business growth.

    • Conducted in-depth data analysis using tools like Excel and SQL to identify trends and insights.

    • Developed comprehensive reports that informed senior management decisions, leading to a 15% increase in operational efficiency.

    • Collaborated with cross-functional teams to streamline processes, resu...

  • Answered by AI
  • Q3. Why are you looking for a change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking for a role that offers more opportunities for advancement, such as leadership training.

    • Seeking new challenges: My current position has become routine, and I'm eager to tackle more complex projects that push my analytical skills.

    • Alignment with career goals: I want to work in...

  • Answered by AI
  • Q4. What are your strengths and weaknesses?
  • Ans. 

    I excel in analytical thinking and communication, but I sometimes struggle with time management under pressure.

    • Strength: Strong analytical skills - I can dissect complex data sets to identify trends and insights, as demonstrated in my previous role.

    • Strength: Effective communicator - I can present findings clearly to both technical and non-technical stakeholders, ensuring everyone is aligned.

    • Weakness: Time management - ...

  • Answered by AI
  • Q5. Tell me about yourself.
  • Ans. 

    Analytical thinker with a background in data analysis, passionate about leveraging insights to drive business decisions.

    • Educational Background: Bachelor's degree in Economics, focusing on data analysis and statistics.

    • Professional Experience: Worked as a data analyst at XYZ Corp, where I improved reporting efficiency by 30%.

    • Technical Skills: Proficient in SQL, Python, and Excel for data manipulation and visualization.

    • Pr...

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

(1 Question)

  • Q1. Previous process knowledge and why looking for change

Interview Preparation Tips

Topics to prepare for Willis Towers Watson Analyst interview:
  • Powerpoint
  • Power Bi
  • Advanced Excel
  • Smart sheet
  • Insurance
  • Reinsurance
  • Regulators
Interview preparation tips for other job seekers - Just have complete knowledge of your current role and role you are applying. How u were helpful in previous role and how you can be good at new role you applying. Logical Strength knowledge. If you good at excel, let them know about your excel skills. Power Bi and Smart sheet knowledge more in demand. Be confident.

Deloitte Interview FAQs

How many rounds are there in Deloitte Selenium Automation Tester interview?
Deloitte interview process usually has 1 rounds. The most common rounds in the Deloitte interview process are Coding Test.

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Interview Questions from Similar Companies

PwC Interview Questions
3.4
 • 1.4k Interviews
Ernst & Young Interview Questions
3.4
 • 1.2k Interviews
KPMG India Interview Questions
3.5
 • 844 Interviews
ZS Interview Questions
3.3
 • 475 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.7
 • 89 Interviews
View all
Deloitte Selenium Automation Tester Salary
based on 7 salaries
₹4.8 L/yr - ₹7.7 L/yr
20% less than the average Selenium Automation Tester Salary in India
View more details

Deloitte Selenium Automation Tester Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

1.0

Promotions

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