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.8k Reviews

Filter interviews by

Wipro Automation Engineer Interview Questions and Answers

Updated 15 Oct 2024

Wipro Automation Engineer Interview Experiences

7 interviews found

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

Multiple choice questions and answers given

Round 2 - HR 

(2 Questions)

  • Q1. Ready to relocate
  • Ans. 

    Yes, I am open to relocating for the right opportunity.

    • I am willing to relocate for the right job opportunity that aligns with my career goals.

    • I am open to exploring new locations and experiencing different cultures.

    • I understand the importance of being flexible and adaptable in the field of automation engineering.

    • I have relocated for previous job opportunities and have successfully adjusted to new environments.

  • Answered by AI
  • Q2. About projects and assignments
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

SDET,DSA.Had test rounds in Eclipse

Automation Engineer Interview Questions Asked at Other Companies

asked in GEA Group
Q1. 16) What is modbus ? Types of modbus? How many slaves we can conn ... read more
asked in Blue Yonder
Q2. 1. What is the difference between Absolute & Relative Xpaths?
Q3. 1. Explain oops concepts in coding. 2. Write a program to find mi ... read more
Q4. One coding challenge was given to find the number of palindrome w ... read more
asked in GEA Group
Q5. 15) What is ASI protocol? How many slaves we can connect to one m ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Java Selenium JIRA Jenkins Agile Testing

Round 2 - One-on-one 

(2 Questions)

  • Q1. Automation Framework
  • Q2. Selenium with Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

A basic aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Java basics related
  • Q2. Programming questions
Round 3 - HR 

(1 Question)

  • Q1. Salary expectations

Wipro interview questions for designations

 Automation Test Engineer

 (16)

 Python Automation Engineer

 (5)

 Senior Automation Engineer

 (4)

 Selenium Automation

 (3)

 Automation Tester

 (2)

 Automation Lead

 (1)

 Qa Automation Testing Engineer

 (3)

 Sdet Automation Test Engineer

 (3)

Automation Engineer Interview Questions & Answers

user image ishwarya kondapaneni

posted on 11 Jul 2022

I applied via Approached by Company and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions went on REFramework, Excel Automatio,Web Automation
  • Q2. Questions went on Queues, PDF Automation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on what u know. Project explanation should be clear. Explain with real scenarios.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

1. Write a program to reverse a string.
2. Write a program to count repeatitive words in a string using hashmap.
3. Write a program for palindrome number.
4. Some java questions

Automation Engineer Jobs at Wipro

View all

Automation Engineer | Software Tester interview

user image Software Testing And Automation

posted on 13 Mar 2022

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(10 Questions)

  • Q1. What is the output of below code class Animal{ Animal(){ System.out.println("animal is created") } class Dog extends Animal{ Dog(){ System.out.println("Dog is created")} class TestSuper4{ pub...
  • Ans. 

    The output of the code will be 'animal is created' followed by 'Dog is created'.

    • The code defines a class Animal with a constructor that prints 'animal is created'.

    • It also defines a class Dog that extends Animal, with a constructor that prints 'Dog is created'.

    • In the main method, an instance of Dog is created, which will trigger the constructors of both Animal and Dog classes.

  • Answered by AI
  • Q2. Output of this : System.out.println(10+20+"Hello"+30+40) - Explain
  • Q3. Output of this : String name="Hello"; name=name+"There"; system.out.println(name)
  • Ans. 

    The output will be 'HelloThere'

    • Concatenation of 'Hello' and 'There' results in 'HelloThere'

    • The final string is printed using System.out.println()

  • Answered by AI
  • Q4. StringBuffer buffer=new StringBuffer("Hello") buffer.append("There"); System.out.println(buffer);
  • Ans. 

    The code creates a StringBuffer object with 'Hello' and appends 'There' to it before printing the final string.

    • StringBuffer is mutable, so the original 'Hello' string can be modified

    • The append() method adds the specified string to the end of the buffer

    • The final output will be 'HelloThere'

  • Answered by AI
  • Q5. Which is valid or invalid a. ChromeDriver driver=new ChromeDriver(); b. WebDriver driver=new ChromeDriver(); c. WebDriver driver2=new WebDriver(); driver2=new ChromeDriver();
  • Ans. 

    Option a is valid, option b is valid, option c is invalid.

    • Option a is valid because ChromeDriver is a subclass of WebDriver, so it can be assigned to a WebDriver reference.

    • Option b is valid because ChromeDriver is a subclass of WebDriver, so it can be instantiated using a WebDriver reference.

    • Option c is invalid because WebDriver is an interface and cannot be instantiated directly. It can only be used as a reference typ

  • Answered by AI
  • Q6. Program to sort the input in descending order without using inbuild method/functions
  • Ans. 

    Sort input array of strings in descending order without using inbuilt functions

    • Iterate through the array and compare each element with the rest to find the largest element

    • Swap the largest element with the first element, then repeat the process for the remaining elements

    • Continue this process until the array is sorted in descending order

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

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

    • findElement returns a single WebElement matching the locator provided

    • findElements returns a list of WebElements matching the locator provided

    • findElement will throw NoSuchElementException if no element is found, while findElements will return an empty list

  • Answered by AI
  • Q8. Difference between getwindowhandle and getwindowhandles() and what is output type
  • Ans. 

    getwindowhandle returns the handle of the current window, getwindowhandles() returns handles of all open windows

    • getwindowhandle returns a single window handle, while getwindowhandles() returns a set of window handles

    • getwindowhandle is used to switch between windows in Selenium WebDriver

    • Output type of getwindowhandle is String, while output type of getwindowhandles() is Set

Answered by AI
  • Q9. Question on finding the xpaths on website
  • Q10. Difference between String and StringBuilder?
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning its value cannot be changed once it is created.

    • StringBuilder is mutable, allowing for modifications to the string without creating a new object.

    • StringBuilder is more efficient for concatenating multiple strings as it does not create new objects each time.

    • Example: String str = "Hello"; StringBuil

  • Answered by AI

    Skills evaluated in this interview

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

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

    Round 1 - Technical 

    (2 Questions)

    • Q1. Can you tell me about yourself?
    • Ans. 

      I am a highly skilled Automation Engineer with a strong background in programming and problem-solving.

      • Experienced in developing automated test scripts using tools like Selenium and Appium

      • Proficient in programming languages such as Java, Python, and C#

      • Familiar with CI/CD pipelines and version control systems like Git

      • Strong analytical skills and attention to detail

      • Excellent communication and teamwork abilities

    • Answered by AI
    • Q2. Topic related to Locators, Waits,Handel Dropdown Menu, OOPS concepts, frame work used in previous organization
    Round 2 - Technical 

    (2 Questions)

    • Q1. Tell me about yourself
    • Ans. 

      I am a highly skilled Automation Engineer with a strong background in programming and problem-solving.

      • Experienced in designing, developing, and implementing automated testing solutions

      • Proficient in programming languages such as Python, Java, and C++

      • Familiar with various automation tools like Selenium and Jenkins

      • Strong analytical skills and attention to detail

      • Excellent communication and teamwork abilities

    • Answered by AI
    • Q2. FrameWoek used, Locators, How to take Screenshot in Selenium,Java program, Handel dropdown menu
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (5 Questions)

    • Q1. Difference between @BeforeMethod vs @BeforeTest
    • Ans. 

      The @BeforeMethod annotation is used to run a method before each test method in a class, while @BeforeTest is used to run a method before any test method in a test tag.

      • The @BeforeMethod annotation is specific to TestNG framework and is used to initialize test data before each test method.

      • @BeforeTest annotation is also specific to TestNG and is used to initialize test data before any test method in a test tag.

      • If a class...

    • Answered by AI
    • Q2. Difference between get vs navigate.to
    • Q3. How you extract data from excel file and which jar file is used
    • Q4. Methods of select class
    • Q5. Explicit wait conditions

    Skills evaluated in this interview

    Wipro Interview FAQs

    How many rounds are there in Wipro Automation Engineer interview?
    Wipro interview process usually has 1-2 rounds. The most common rounds in the Wipro interview process are Coding Test, Technical and Aptitude Test.
    How to prepare for Wipro Automation Engineer 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 Wipro. The most common topics and skills that interviewers at Wipro expect are Automation Engineering, Automation Testing, Java, Python and Selenium.
    What are the top questions asked in Wipro Automation Engineer interview?

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

    1. ready to reloc...read more
    2. Questions went on REFramework, Excel Automatio,Web Automat...read more
    3. Questions went on Queues, PDF Automati...read more

    Tell us how to improve this page.

    Wipro Automation Engineer Interview Process

    based on 5 interviews in last 1 year

    1 Interview rounds

    • Coding Test Round
    View more

    People are getting interviews through

    based on 3 Wipro interviews
    Job Portal
    Campus Placement
    33%
    33%
    34% candidates got the interview through other sources.
    Moderate Confidence
    ?
    Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
    Wipro Automation Engineer Salary
    based on 292 salaries
    ₹2 L/yr - ₹9.7 L/yr
    8% less than the average Automation Engineer Salary in India
    View more details

    Wipro Automation Engineer Reviews and Ratings

    based on 28 reviews

    4.1/5

    Rating in categories

    4.1

    Skill development

    4.2

    Work-Life balance

    3.6

    Salary & Benefits

    4.2

    Job Security

    4.3

    Company culture

    3.1

    Promotions/Appraisal

    3.9

    Work Satisfaction

    Explore 28 Reviews and Ratings
    Automation Engineer - ABBYY

    Bangalore / Bengaluru

    2-5 Yrs

    Not Disclosed

    Automation Engineer

    Hyderabad / Secunderabad

    6-8 Yrs

    Not Disclosed

    Automation Engineer

    Bangalore / Bengaluru

    3-5 Yrs

    Not Disclosed

    Explore more jobs
    Project Engineer
    32.6k salaries
    unlock blur

    ₹1.8 L/yr - ₹8.3 L/yr

    Senior Software Engineer
    22.9k salaries
    unlock blur

    ₹5.8 L/yr - ₹22.5 L/yr

    Senior Associate
    21.2k salaries
    unlock blur

    ₹0.8 L/yr - ₹5.5 L/yr

    Senior Project Engineer
    20.5k 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