Upload Button Icon Add office photos

PwC

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

PwC Selenium Automation Tester Interview Questions and Answers

Updated 11 Aug 2024

PwC Selenium Automation Tester Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Basics questions on SAP

Interview Preparation Tips

Interview preparation tips for other job seekers - Recomend, not to join this company. what they promise and what they provide is totally irrelevant. No ethics.

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

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. What is the difference between NACL and security groups?
  • Ans. 

    NACL and security groups are both AWS network security features, but NACL operates at the subnet level while security groups operate at the instance level.

    • NACL is stateless while security groups are stateful

    • NACL can allow or deny traffic based on IP addresses, protocols, and ports while security groups only allow traffic

    • NACL rules are evaluated in order while security group rules are evaluated independently

    • NACL can be ...

  • Answered by AI
  • Q2. How you identify public/private subnets?
  • Ans. 

    Public and private subnets can be identified based on their IP address range and their accessibility from the internet.

    • Public subnets have IP addresses that are accessible from the internet.

    • Private subnets have IP addresses that are not accessible from the internet.

    • Public subnets are typically used for resources that need to be accessed from the internet, such as web servers.

    • Private subnets are typically used for resou...

  • Answered by AI
  • Q3. What is the difference between s3 and Glacier?
  • Ans. 

    S3 is for frequently accessed data while Glacier is for long-term archival storage.

    • S3 is designed for frequently accessed data while Glacier is for long-term archival storage.

    • S3 has low latency retrieval times while Glacier has higher retrieval times.

    • S3 is more expensive than Glacier for storage and retrieval.

    • Glacier has a tiered pricing model based on retrieval times and storage duration.

    • S3 is suitable for storing dat...

  • Answered by AI
  • Q4. What is the difference between AMI and s3?
  • Ans. 

    AMI is a virtual machine while S3 is a storage service in AWS.

    • AMI stands for Amazon Machine Image and is a pre-configured virtual machine that can be used to create EC2 instances.

    • S3 stands for Simple Storage Service and is a scalable object storage service that can be used to store and retrieve data.

    • AMI is used to create EC2 instances while S3 is used to store and retrieve data.

    • AMI is used for computing while S3 is use...

  • Answered by AI
  • Q5. What is the parameter of creating group policy using json
  • Ans. 

    The parameter for creating group policy using JSON is a JSON object containing the policy settings.

    • The JSON object should include the policy name, description, and settings.

    • The settings can include values for registry keys, security options, and other policy settings.

    • Example: {"policyName": "Password Policy", "description": "Enforces password complexity requirements", "settings": {"MinimumPasswordLength": 8, "PasswordC

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well from what you mentioned in your resume. they will fully scan your resume to check your knowledge and easily can identify from your answers.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

Interview Preparation Tips

Interview preparation tips for other job seekers - Average interview.
Process is good.
Two tech rounf.

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
-
Process Duration
-
Result
-

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on java concept.
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.

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Contribute & help others!
anonymous
You can choose to be anonymous

PwC Interview FAQs

How many rounds are there in PwC Selenium Automation Tester interview?
PwC interview process usually has 1 rounds. The most common rounds in the PwC interview process are One-on-one Round.
What are the top questions asked in PwC Selenium Automation Tester interview?

Some of the top questions asked at the PwC Selenium Automation Tester interview -

  1. Code: take your name as input and print every letter separately and if any vowe...read more
  2. Difference between findElement and findElemen...read more
  3. What is Fluent Wa...read more

Recently Viewed

LIST OF COMPANIES

The Jaypee Group

Locations

LIST OF COMPANIES

G R Infraprojects

Locations

INTERVIEWS

Nagarjuna Construction Company

No Interviews

INTERVIEWS

PwC

No Interviews

DESIGNATION

JOBS

TML Business Services

No Jobs

SALARIES

Mahindra & Mahindra

INTERVIEWS

Nagarjuna Construction Company

No Interviews

LIST OF COMPANIES

Dilip Buildcon

Locations

INTERVIEWS

Nagarjuna Construction Company

No Interviews

Tell us how to improve this page.

PwC Selenium Automation Tester Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 2.8k Interviews
Ernst & Young Interview Questions
3.4
 • 1.1k Interviews
KPMG India Interview Questions
3.5
 • 790 Interviews
ZS Interview Questions
3.4
 • 449 Interviews
BCG Interview Questions
3.7
 • 196 Interviews
Bain & Company Interview Questions
3.8
 • 105 Interviews
Grant Thornton Interview Questions
3.7
 • 101 Interviews
Blackrock Interview Questions
3.8
 • 99 Interviews
WSP Interview Questions
4.2
 • 91 Interviews
View all
Senior Associate
15.4k salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Associate
13.2k salaries
unlock blur

₹4.8 L/yr - ₹17 L/yr

Manager
6.8k salaries
unlock blur

₹14 L/yr - ₹45 L/yr

Senior Consultant
4.4k salaries
unlock blur

₹9 L/yr - ₹33 L/yr

Associate2
4.3k salaries
unlock blur

₹4.6 L/yr - ₹16.5 L/yr

Explore more salaries
Compare PwC with

Deloitte

3.8
Compare

Ernst & Young

3.4
Compare

Accenture

3.8
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview