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
3.7

based on 50.5k Reviews

Filter interviews by

Wipro Senior Automation Tester Interview Questions and Answers for Experienced

Updated 29 Nov 2024

Wipro Senior Automation Tester Interview Experiences for Experienced

1 interview found

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

I applied via Job Portal

Round 1 - Technical 

(3 Questions)

  • Q1. Reverse String Code
  • Q2. Methods of API testing
  • Ans. 

    API testing involves testing the functionality, reliability, performance, and security of APIs.

    • Testing API endpoints for correct response codes and data

    • Verifying data accuracy and consistency in API responses

    • Testing API security measures such as authentication and authorization

    • Performance testing to ensure APIs can handle expected load

    • Exploratory testing to uncover potential issues

  • Answered by AI
  • Q3. Frameworks and How Given When Then are implemented in BDD framework
  • Ans. 

    Given When Then is implemented in BDD framework by writing scenarios in a structured format to define behavior

    • BDD frameworks like Cucumber use Given When Then to structure scenarios

    • Given describes the initial state of the system

    • When describes the action taken by the user

    • Then describes the expected outcome or result

    • Example: Given a user is logged in, When they click on the 'Logout' button, Then they should be logged out

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(1 Question)

  • Q1. Asked About Class Loader Asked about low priority , High priority Bugs in Last project
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Write a program to print 2 nd highest number from array with using sorting?
  • Ans. 

    Program to find 2nd highest number in array without sorting.

    • Iterate through array to find highest and second highest numbers

    • Initialize variables to store highest and second highest numbers

    • Compare each element with highest and second highest numbers

  • Answered by AI
  • Q2. Write a program to add value into hashmap?
  • Ans. 

    Program to add values into a hashmap in Java.

    • Create a new HashMap object.

    • Use the put() method to add key-value pairs into the hashmap.

    • Keys must be unique, values can be duplicated.

    • Example: HashMap map = new HashMap<>(); map.put("A", 1);

  • Answered by AI
  • Q3. What are main concepts of OOPS in java?
  • Ans. 

    Main concepts of OOPS in Java include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class B extends class A.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability of a method to do different things ba...

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

(2 Questions)

  • Q1. What are the different http codes used in rest assure?
  • Ans. 

    Different HTTP codes used in Rest Assured

    • 200 - OK: Request was successful

    • 201 - Created: Request was successful and a new resource was created

    • 400 - Bad Request: Request was invalid

    • 401 - Unauthorized: Request requires user authentication

    • 404 - Not Found: Requested resource was not found

    • 500 - Internal Server Error: Server encountered an unexpected condition

  • Answered by AI
  • Q2. Write a code using rest assure for status code
  • Ans. 

    Code using Rest Assured for checking status code

    • Import Rest Assured library

    • Use given() method to specify the base URI

    • Use when() method to specify the HTTP method and endpoint

    • Use then() method to validate the status code

  • Answered by AI

Skills evaluated in this interview

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

(5 Questions)

  • Q1. What is selenium
  • Ans. 

    Selenium is a popular open-source automation testing tool used for web application testing.

    • Selenium supports multiple programming languages like Java, Python, C#, etc.

    • It allows testers to write test scripts in a variety of IDEs like Eclipse, IntelliJ, etc.

    • Selenium can automate interactions with web browsers like Chrome, Firefox, etc.

    • It can perform various testing tasks such as form filling, button clicking, data extrac

  • Answered by AI
  • Q2. Explain different components of selenium
  • Ans. 

    Selenium is a suite of tools used for automating web browsers.

    • Selenium IDE: Record and playback tool for creating automated tests

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

    • Selenium Grid: Distributes test execution on multiple machines for parallel testing

    • Selenium RC (Remote Control): Deprecated tool for running tests in multiple browsers

  • Answered by AI
  • Q3. Difference between findelement and findelement
  • Ans. 

    findelement is a method used in Selenium to locate a single web element on a webpage, while findelements is used to locate multiple web elements.

    • findelement returns the first matching element found on the webpage

    • findelements returns a list of all matching elements found on the webpage

    • findelement is used when only one element needs to be located, while findelements is used when multiple elements need to be located

  • Answered by AI
  • Q4. Different types of wait
  • Ans. 

    Different types of wait include implicit, explicit, and fluent waits in automation testing.

    • Implicit wait: Waits for a certain amount of time before throwing a NoSuchElementException if the element is not found.

    • Explicit wait: Waits for a certain condition to be met before proceeding further in the code.

    • Fluent wait: Waits for a condition to be met with a defined polling frequency and timeout.

    • Example: Using implicit wait ...

  • Answered by AI
  • Q5. Difference between close and wait
  • Ans. 

    Close is used to close a window or application, while wait is used to pause the execution for a specified amount of time.

    • Close is used to close a window or application after the test is completed

    • Wait is used to pause the execution for a specified amount of time, such as waiting for an element to load before proceeding

    • Example: driver.close() will close the current window, while Thread.sleep(5000) will pause the executio

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. They will explain a scenario and we need to answer
  • Q2. Buffers, DEX , TDS, Identification methods

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to ask interviewer about project duration
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Why string immutable in java ?
  • Ans. 

    String is immutable in Java to ensure security, thread safety, and optimization.

    • Immutable strings prevent accidental modification of data.

    • Immutable strings can be safely shared among multiple threads.

    • Immutable strings allow for efficient memory allocation and caching.

    • Immutable strings are used in various security-related operations.

    • Immutable strings enable the use of string pooling for optimization.

  • Answered by AI
  • Q2. Function overloading and function overriding

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jul 2023. There were 2 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 - One-on-one 

(3 Questions)

  • Q1. Api Testing with Rest API
  • Ans. 

    API testing with Rest API involves testing the functionality, performance, and security of API endpoints.

    • Understand the API documentation to identify endpoints, parameters, and expected responses

    • Test different HTTP methods like GET, POST, PUT, DELETE

    • Verify response codes, headers, and payload data

    • Perform boundary value analysis and negative testing

    • Use tools like Postman or RestAssured for automation testing

    • Validate aut...

  • Answered by AI
  • Q2. Programs on Java
  • Q3. Framework and project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviwer interviewd for 1 hour and not shortlisted as I dont have a skill which I didnt mentioned anywhere in my resume.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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. Introduction current project framework java core selenium etc
Round 3 - Technical 

(1 Question)

  • Q1. Introduction current project framework core java version control CI/CD selenium etc
Round 4 - HR 

(1 Question)

  • Q1. Introduction salary discussion joining location LWD etc

Interview Preparation Tips

Interview preparation tips for other job seekers - keep your knowledge polished because interviewer ask from very basic to the current scenario.

I applied via Company Website and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Assignment 

Selenium ,java any topic based question

Round 2 - Technical 

(1 Question)

  • Q1. Any Techinical questions
Round 3 - HR 

(1 Question)

  • Q1. Project level question thank

Interview Preparation Tips

Topics to prepare for HCL Infosystems Software Tester interview:
  • Selenium
  • Core Java
  • Automation Testing
Interview preparation tips for other job seekers - thanks for giving me thise oppertunities........................

I applied via Approached by Company and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Prepare all the basic Testing questions, 1) Functional and Non Functional testing 2) Cross browser testing 3) Regression and Retesting difference 4) bug and defect difference and definition 5) severity and...
Round 3 - One-on-one 

(1 Question)

  • Q1. 1) cucumber 2) Defects worked on, tell me about the bugs you found during testing 3) Functional Testing 4) Automation testing tools you worked on how you worked on in detail
  • Ans. 

    Questions related to cucumber, defects found, functional and automation testing tools.

    • Cucumber is a BDD tool used for testing

    • Found defects related to UI, functionality, and performance

    • Functional testing involves testing the application's features and functionality

    • Worked on automation tools like Selenium, Appium, and TestNG

    • Used automation tools to create test scripts and execute them

    • Integrated automation scripts with CI

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for TCS Automation Test Engineer interview:
  • Java
  • SQL
  • Cucu
  • Maven
  • Testng
Interview preparation tips for other job seekers - Be confident when you answer. During interview make sure whatever you are telling as answer to the question , be sure that when asked question from your answer you are aware about it. If you dont know any questions, tell them you are still learning on it ,or you are not aware about it or I'm not sure about it but if given a chance will learn about it. Show them even if you don't know you are ready to learn and give your best. Be clear on your concepts.

Skills evaluated in this interview

Wipro Interview FAQs

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

Some of the top questions asked at the Wipro Senior Automation Tester interview for experienced candidates -

  1. Frameworks and How Given When Then are implemented in BDD framew...read more
  2. Methods of API test...read more
  3. Reverse String C...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Wipro interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
View all
Wipro Senior Automation Tester Salary
based on 24 salaries
₹6.3 L/yr - ₹25 L/yr
22% more than the average Senior Automation Tester Salary in India
View more details
Project Engineer
32.6k salaries
unlock blur

₹1.8 L/yr - ₹8.3 L/yr

Senior Software Engineer
23k salaries
unlock blur

₹5.8 L/yr - ₹22.3 L/yr

Senior Associate
21.2k salaries
unlock blur

₹0.8 L/yr - ₹5.5 L/yr

Senior Project Engineer
20.6k salaries
unlock blur

₹5 L/yr - ₹19 L/yr

Technical Lead
18.6k salaries
unlock blur

₹8.2 L/yr - ₹36.5 L/yr

Explore more salaries
Compare Wipro with

TCS

3.7
Compare

Infosys

3.7
Compare

Tesla

4.3
Compare

Amazon

4.1
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview