Upload Button Icon Add office photos
Engaged Employer

i

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

Wipro Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Wipro Selenium Automation Interview Questions and Answers

Updated 26 Mar 2022

11 Interview questions

A Selenium Automation was asked
Q. What is the difference between a simple Java program and a Maven project?
Ans. 

A simple Java program is a standalone program while a Maven project is a build automation tool.

  • A simple Java program is compiled and executed using the command line or an IDE.

  • A Maven project uses a pom.xml file to manage dependencies and build the project.

  • A simple Java program may require manual management of dependencies.

  • A Maven project can easily manage dependencies and build the project with a single command.

  • A ...

A Selenium Automation was asked
Q. How do you disable a test?
Ans. 

To disable a test, we can comment out the test code or use testNG annotations.

  • Comment out the test code

  • Use testNG annotations like @Test(enabled=false)

  • Use testNG XML file to disable the test

  • Use groups to disable a set of tests

Selenium Automation Interview Questions Asked at Other Companies

asked in Wipro
Q1. Write a program to remove duplicate character in a string if ther ... read more
asked in Wipro
Q2. If a page has two login buttons, will they have the same ID?
asked in Wipro
Q3. How will you retrieve all the values from the drop down?
asked in Wipro
Q4. How do you write the step execution report/result in the report?
Q5. How do you execute a feature file in parallel in a BDD Cucumber F ... read more
A Selenium Automation was asked
Q. What are the key differences between TestNG and JUnit?
Ans. 

TestNG is more advanced and flexible than JUnit, with features like parallel testing and data-driven testing.

  • TestNG supports parallel testing while JUnit does not.

  • TestNG allows for data-driven testing while JUnit does not.

  • TestNG has more advanced annotations and reporting features than JUnit.

  • TestNG can be used with both Java and non-Java languages while JUnit is only for Java.

  • JUnit is simpler and easier to learn t...

A Selenium Automation was asked
Q. Why are tags used in Cucumber?
Ans. 

Tags are used in Cucumber to organize and filter scenarios and features.

  • Tags allow for easy organization of scenarios and features based on their purpose or functionality.

  • Tags can be used to filter which scenarios or features are run during a test.

  • Tags can be added to scenarios or features using the '@' symbol followed by the tag name.

  • Tags can also be used to pass parameters to step definitions.

  • Examples: @smoke, @...

What people are saying about Wipro

View All
an analyst
2d
PIP is for Vengeance, Not Performance – A Tool Misused by Insecure Managers
I always believed a Performance Improvement Plan (PIP) was meant to help an employee grow. But reality hit differently. Some were put on a PIP without any prior warnings, no clear expectations, and no proper guidance. It felt less like a performance correction and more like a personal vendetta. The same managers who failed to support or understand challenges were quick to question, criticize, and push into PIP mode — just to show power or settle scores. Performance issues should be handled with constructive feedback and mentorship. But in some companies, especially under insecure leadership, PIP becomes a silent weapon to corner individuals or force resignations.
Got a question about Wipro?
Ask anonymously on communities.
A Selenium Automation was asked
Q. How does priority work in TestNG?
Ans. 

Priority in TestNG determines the order in which test methods are executed.

  • Priority can be set using the 'priority' attribute in @Test annotation

  • Default priority is 0, higher priority is executed first

  • Priority can be negative as well

  • If two methods have the same priority, they are executed in alphabetical order

A Selenium Automation was asked
Q. What collections are used in the framework?
Ans. 

Collections like ArrayList, HashMap, HashSet are commonly used in Selenium framework.

  • ArrayList is used to store a list of elements

  • HashMap is used to store key-value pairs

  • HashSet is used to store unique elements

  • Collections class is used for sorting and searching

A Selenium Automation was asked
Q. How do you write the step execution report/result in the report?
Ans. 

Use TestNG or JUnit framework to generate step execution report/result.

  • Use TestNG or JUnit annotations to mark the start and end of each test step.

  • Use TestNG or JUnit listeners to capture the test results and generate the report.

  • Use reporting libraries like ExtentReports or ReportNG to generate detailed reports with screenshots and logs.

Are these interview questions helpful?
A Selenium Automation was asked
Q. How do you switch to the second window using the page title?
Ans. 

To switch to the second window using page title, we can use getWindowHandles() and switchTo() methods.

  • Use getWindowHandles() method to get all the window handles

  • Iterate through the window handles and switch to the desired window using switchTo() method

  • Use getTitle() method to get the title of each window and compare it with the desired title

A Selenium Automation was asked
Q. If a page has two login buttons, will they have the same ID?
Ans. 

No, the two login buttons should not have the same ID.

  • IDs should be unique for each element on a page

  • Having two elements with the same ID can cause issues with locating and interacting with the elements

A Selenium Automation was asked
Q. How will you retrieve all the values from the drop down?
Ans. 

To retrieve all values from a drop down, we can use the getOptions() method and store the values in an array of strings.

  • Locate the drop down element using any of the locators

  • Create a Select class object by passing the drop down element as a parameter

  • Use the getOptions() method to retrieve all the options from the drop down

  • Store the options in an array of strings

Wipro Selenium Automation Interview Experiences

3 interviews found

Round 1 - Technical 

(1 Question)

  • Q1. Write a program to remove duplicate character in a string if there are multiple users in an application, and if the buttons in the applications are specific to particular user, you need to perform operatio...
  • Ans. 

    Questions related to Selenium Automation and software testing

    • To remove duplicate characters in a string, use a loop and a hashset

    • To perform operations on specific buttons for a user, use conditional statements

    • To switch to a particular tab, use the window handle

    • 500 error code in Postman validation indicates a bad request

    • Primary key is a unique identifier for a record in a database

    • Roles and responsibilities in a project ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for basic java, selenium and error codes, db queries

Skills evaluated in this interview

I applied via Naukri.com

Interview Questionnaire 

5 Questions

  • Q1. Priority in TestNg
  • Ans. 

    Priority in TestNG determines the order in which test methods are executed.

    • Priority can be set using the 'priority' attribute in @Test annotation

    • Default priority is 0, higher priority is executed first

    • Priority can be negative as well

    • If two methods have the same priority, they are executed in alphabetical order

  • Answered by AI
  • Q2. Difference between simple Java program and maven project
  • Ans. 

    A simple Java program is a standalone program while a Maven project is a build automation tool.

    • A simple Java program is compiled and executed using the command line or an IDE.

    • A Maven project uses a pom.xml file to manage dependencies and build the project.

    • A simple Java program may require manual management of dependencies.

    • A Maven project can easily manage dependencies and build the project with a single command.

    • A simpl...

  • Answered by AI
  • Q3. Why do tags used in cucumber
  • Ans. 

    Tags are used in Cucumber to organize and filter scenarios and features.

    • Tags allow for easy organization of scenarios and features based on their purpose or functionality.

    • Tags can be used to filter which scenarios or features are run during a test.

    • Tags can be added to scenarios or features using the '@' symbol followed by the tag name.

    • Tags can also be used to pass parameters to step definitions.

    • Examples: @smoke, @regre...

  • Answered by AI
  • Q4. Difference between TestNg and junit
  • Ans. 

    TestNG is more advanced and flexible than JUnit, with features like parallel testing and data-driven testing.

    • TestNG supports parallel testing while JUnit does not.

    • TestNG allows for data-driven testing while JUnit does not.

    • TestNG has more advanced annotations and reporting features than JUnit.

    • TestNG can be used with both Java and non-Java languages while JUnit is only for Java.

    • JUnit is simpler and easier to learn than T...

  • Answered by AI
  • Q5.  How to disable test.
  • Ans. 

    To disable a test, we can comment out the test code or use testNG annotations.

    • Comment out the test code

    • Use testNG annotations like @Test(enabled=false)

    • Use testNG XML file to disable the test

    • Use groups to disable a set of tests

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was good. Though it was for selenium automation, less questions asked from that. In JD, basic sql and linux was given. No questions asked. More Java concepts and TestNg questions asked

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1.  In a page there are two login button available, So will it have same ID?
  • Ans. 

    No, the two login buttons should not have the same ID.

    • IDs should be unique for each element on a page

    • Having two elements with the same ID can cause issues with locating and interacting with the elements

  • Answered by AI
  • Q2. How to write the step execution report/result in the report?
  • Ans. 

    Use TestNG or JUnit framework to generate step execution report/result.

    • Use TestNG or JUnit annotations to mark the start and end of each test step.

    • Use TestNG or JUnit listeners to capture the test results and generate the report.

    • Use reporting libraries like ExtentReports or ReportNG to generate detailed reports with screenshots and logs.

  • Answered by AI
  • Q3. How to switch to the second window using page Title?
  • Ans. 

    To switch to the second window using page title, we can use getWindowHandles() and switchTo() methods.

    • Use getWindowHandles() method to get all the window handles

    • Iterate through the window handles and switch to the desired window using switchTo() method

    • Use getTitle() method to get the title of each window and compare it with the desired title

  • Answered by AI
  • Q4. How will you retrieve all the values from the drop down?
  • Ans. 

    To retrieve all values from a drop down, we can use the getOptions() method and store the values in an array of strings.

    • Locate the drop down element using any of the locators

    • Create a Select class object by passing the drop down element as a parameter

    • Use the getOptions() method to retrieve all the options from the drop down

    • Store the options in an array of strings

  • Answered by AI
  • Q5. What are the collections used in framework?
  • Ans. 

    Collections like ArrayList, HashMap, HashSet are commonly used in Selenium framework.

    • ArrayList is used to store a list of elements

    • HashMap is used to store key-value pairs

    • HashSet is used to store unique elements

    • Collections class is used for sorting and searching

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Referral and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Types of xpaths, project structure, cucumber dry run option, testing basic annotations, difference between interface and abstract class, what are the concepts of oops
  • Ans. 

    Answering questions related to Selenium Automation

    • Types of xpaths: Absolute and Relative

    • Project structure: Follows a modular approach

    • Cucumber dry run option: Used to check feature file syntax

    • Testing basic annotations: @Test, @BeforeTest, @AfterTest

    • Difference between interface and abstract class: Interface has only method declarations, abstract class has both method declarations and implementations

    • Concepts of OOPS: Inhe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview comparatively easy other companies , although hr process is the worst. The hr process might take upto an year in some cases and even after that the profile maybe on hold after clearing all rounds. A complete poor coordination within the hr team is visible and the Hr are least interested and often not available to answer the candidates queries.

Skills evaluated in this interview

What people are saying about Wipro

View All
an analyst
2d
PIP is for Vengeance, Not Performance – A Tool Misused by Insecure Managers
I always believed a Performance Improvement Plan (PIP) was meant to help an employee grow. But reality hit differently. Some were put on a PIP without any prior warnings, no clear expectations, and no proper guidance. It felt less like a performance correction and more like a personal vendetta. The same managers who failed to support or understand challenges were quick to question, criticize, and push into PIP mode — just to show power or settle scores. Performance issues should be handled with constructive feedback and mentorship. But in some companies, especially under insecure leadership, PIP becomes a silent weapon to corner individuals or force resignations.
Got a question about Wipro?
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. What is mother of all classes?
  • Ans. 

    There is no such thing as 'mother of all classes' in Selenium Automation.

    • There is no concept of 'mother of all classes' in Selenium Automation.

    • It is possible that the interviewer is asking a trick question or trying to test the candidate's knowledge.

    • The candidate should politely ask for clarification or context before attempting to answer.

    • If the interviewer insists on an answer, the candidate can explain that there is ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly if you are giving interview for Selenium tester.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Interview was not happened as scheduled. No one joined in the meeting

Interview Preparation Tips

Interview preparation tips for other job seekers - I got an invite for an interview and it was scheduled by today on 11:30 Am to 12:00 pm but I didn't see anyone joined in the meeting . I waited till 1 o clock no one joined in the meeting

I appeared for an interview before Jul 2020.

Interview Questionnaire 

1 Question

  • Q1. Is Infosys listed?
  • Ans. 

    Yes, Infosys is listed on the Indian stock exchanges as well as on the NYSE.

    • Infosys is listed on the Bombay Stock Exchange (BSE) and National Stock Exchange of India (NSE)

    • It is also listed on the New York Stock Exchange (NYSE)

    • Infosys has a market capitalization of over $80 billion as of 2021

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in advance
Are these interview questions helpful?

I applied via Job Fair and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic accounting methods and journals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident About what you are saying

I applied via Naukri.com and was interviewed in Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why are you looking for the job 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 to expand my skill set and take on more leadership responsibilities.

    • Seeking a better cultural fit: My current company has a different work culture than what I thrive in; I value collaboration and innovation.

    • Interest in new technologies: I'm excited about working with cuttin...

  • Answered by AI
  • Q2. Relevant technical questions, as per my current technology

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and be yourself. That's what the interviewers looked into. Also a thorough understanding of the technology is a must and that is what will help you in cracking the interview. You don't have to go in-depth, just the overview and what happens when is what they look for. Good communication skills is also an added incentive, something I always try to work on. All the best

I applied via Approached by Company and was interviewed before May 2018. There were 6 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. This is face to face interview... They are observing our behaviour... Attitude... Etc
  • Q2. Introduce u r self....
  • Ans. 

    I am a dedicated and hardworking individual with a passion for learning and growth.

    • I have a Bachelor's degree in Business Administration from XYZ University.

    • I have 3 years of experience working in marketing and sales roles.

    • I am proficient in Microsoft Office Suite and have strong communication skills.

    • I am a team player and enjoy collaborating with others to achieve common goals.

  • Answered by AI
  • Q3. U r carrier objections
  • Ans. 

    My career objectives focus on continuous growth, contributing to team success, and making a positive impact in my field.

    • Aim to develop expertise in my field, such as becoming a certified project manager.

    • Seek leadership opportunities to guide and mentor junior team members.

    • Aspire to work on innovative projects that challenge my skills and creativity.

    • Desire to contribute to a company's mission, like improving customer sa...

  • Answered by AI
  • Q4. About TCS
  • Q5. Why should u select TCS
  • Ans. 

    TCS is a global leader in IT services with a strong reputation for innovation and client satisfaction.

    • TCS has a proven track record of delivering high-quality services to clients worldwide.

    • TCS offers a wide range of opportunities for career growth and development.

    • TCS values diversity and inclusion, creating a supportive work environment for employees.

    • TCS invests in cutting-edge technologies and training programs to kee...

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Experience: Any kind of topic u cn select... Sales, accounts, service

Round: Test
Experience: Aptitude test... Mathematic and problem solving... General knowledge is very important

Round: Telephonic
Experience: This is final round... BH directly interact with us...

General Tips: Be confident... Be clam.... Keep smiling face... That is the way to win
Skills: Communication, Body Language, Leadership, Presentation Skills, Time Management
Duration: <1 week

Wipro Interview FAQs

How many rounds are there in Wipro Selenium Automation interview?
Wipro interview process usually has 1 rounds. The most common rounds in the Wipro interview process are Technical.
What are the top questions asked in Wipro Selenium Automation interview?

Some of the top questions asked at the Wipro Selenium Automation interview -

  1. Write a program to remove duplicate character in a string if there are multiple...read more
  2. In a page there are two login button available, So will it have same ...read more
  3. How will you retrieve all the values from the drop do...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
LTIMindtree Interview Questions
3.7
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
View all
Project Engineer
33.3k salaries
unlock blur

₹3.2 L/yr - ₹7.3 L/yr

Senior Software Engineer
23.2k salaries
unlock blur

₹6.2 L/yr - ₹19 L/yr

Senior Associate
21.8k salaries
unlock blur

₹1.8 L/yr - ₹5.5 L/yr

Technical Lead
20.1k salaries
unlock blur

₹16.6 L/yr - ₹30 L/yr

Senior Project Engineer
18.7k salaries
unlock blur

₹6.4 L/yr - ₹18.4 L/yr

Explore more salaries
Compare Wipro with

TCS

3.6
Compare

Infosys

3.6
Compare

Tesla

4.0
Compare

Amazon

4.0
Compare
write
Share an Interview