Upload Button Icon Add office photos
Engaged Employer

i

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

IBM Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IBM Qa Automation Testing Engineer Interview Questions, Process, and Tips

Updated 26 Aug 2024

Top IBM Qa Automation Testing Engineer Interview Questions and Answers

IBM Qa Automation Testing Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(5 Questions)

  • Q1. Tell me a little bit about yourself
  • Q2. What is the different types of frameworks selenium
  • Ans. 

    Selenium frameworks include Data-Driven, Keyword-Driven, Hybrid, Page Object Model, and Behavior-Driven Development.

    • Data-Driven Framework: Tests are driven by external data sources like Excel sheets or databases.

    • Keyword-Driven Framework: Tests are written using keywords and actions.

    • Hybrid Framework: Combination of Data-Driven and Keyword-Driven frameworks.

    • Page Object Model: Each web page is represented as a class, maki...

  • Answered by AI
  • Q3. What is the different types of draw back of selenium
  • Ans. 

    Some drawbacks of Selenium include limited support for handling non-browser windows, lack of built-in reporting capabilities, and difficulty in testing mobile applications.

    • Limited support for handling non-browser windows (pop-ups, alerts, etc.)

    • Lack of built-in reporting capabilities, requiring integration with third-party tools like TestNG or JUnit

    • Difficulty in testing mobile applications due to the need for additional...

  • Answered by AI
  • Q4. How to handle the scroll handing
  • Ans. 

    Scroll handling in automation testing involves using methods to interact with scroll bars and elements on a webpage.

    • Use methods like scrollToElement() to scroll to a specific element on the page

    • Use actions class in Selenium to perform scroll actions like scrolling up, down, left, or right

    • Handle dynamic loading of elements by scrolling to the bottom of the page to trigger the loading of more content

    • Use JavaScriptExecuto

  • Answered by AI
  • Q5. What is the testng
  • Ans. 

    TestNG is a testing framework designed for unit testing and integration testing in Java.

    • TestNG stands for Test Next Generation.

    • It is used for writing and running tests in Java.

    • TestNG supports annotations like @Test, @BeforeSuite, @AfterSuite, etc.

    • It allows grouping of test cases, parameterization, and parallel execution.

    • TestNG generates detailed test reports and supports data-driven testing.

  • Answered by AI

Skills evaluated in this interview

Qa Automation Testing Engineer Interview Questions & Answers

user image Nikhil Vardhan Tawania

posted on 26 Aug 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic Selenium and Java questions
Frequency counter code in Java
Gmail login Automation

Round 2 - Behavioral 

(2 Questions)

  • Q1. Why looking for another job
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic work environment.

    • Looking for opportunities to expand my skill set and knowledge in automation testing

    • Seeking a more collaborative team environment to enhance my learning and development

    • Interested in working on cutting-edge technologies and projects to further my career

  • Answered by AI
  • Q2. Expected salary
  • Ans. 

    Negotiable based on experience and responsibilities

    • Salary expectations are based on industry standards, experience, and responsibilities of the role

    • Research average salaries for Qa Automation Testing Engineers in the specific location

    • Consider benefits, bonuses, and other perks in addition to base salary

    • Be prepared to discuss salary range during negotiation

  • Answered by AI

Qa Automation Testing Engineer Interview Questions Asked at Other Companies

asked in GlobalLogic
Q1. selenium: what are selenium components, what are the different lo ... read more
asked in GlobalLogic
Q2. How do you convert json object to string and vice versa?
asked in GlobalLogic
Q3. Robot Framework : what are standard libraries in Robot Framework? ... read more
asked in GlobalLogic
Q4. Write a program to find the elements of a list that have least di ... read more
asked in GlobalLogic
Q5. what are the locators in selenium? what is the difference between ... read more

Interview questions from similar companies

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

I applied via Job Fair and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1.30 hours, Java, selenium

Round 2 - One-on-one 

(1 Question)

  • Q1. Java program to compare 2 strings and check if both matching Selenium Code for Drag and Drop images Selenium code for selecting all the elements from the dropdown Java concepts: OOPs, Inheritance(Multiple ...
Round 3 - Technical 

(1 Question)

  • Q1. AI Generated interview which is same a face-to-face interview. Questions asked on Java concepts, Selenium concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Find Xpath for given webpage?
  • Q2. Explain about Java OOPS concepts?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions of selenium.
  • Q2. Some java conceptual questions
Round 2 - Technical 

(1 Question)

  • Q1. Asked to write code of how read data from excel and explain the entire project structure.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic question were asked

Round 2 - Coding Test 

Detail coding questions

Round 3 - HR 

(2 Questions)

  • Q1. Hobbies and interest
  • Q2. Why you choose our company
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. Explain HashMap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • It uses hashing to store key-value pairs in an array.

    • Keys in a HashMap must be unique, but values can be duplicated.

    • HashMap allows for quick retrieval of values based on keys.

    • Example: HashMap map = new HashMap<>();

  • Answered by AI
  • Q2. Is Cucumber Data Driven Framework?
  • Ans. 

    Yes, Cucumber is a Data Driven Framework.

    • Cucumber allows for writing test cases in plain English using Gherkin syntax

    • Data can be stored in external files like Excel, CSV, or JSON and easily integrated into test scripts

    • Scenarios can be parameterized to run with different test data sets

  • Answered by AI
  • Q3. Explain Apium and PT
  • Ans. 

    Appium is an open-source tool for automating mobile applications, while PT stands for Page Object Model Testing.

    • Appium is used for automating mobile apps on iOS and Android platforms.

    • It supports multiple programming languages like Java, Python, and Ruby.

    • Page Object Model Testing (PT) is a design pattern used in test automation to create an object repository for web elements on a web page.

    • PT helps in reducing code dupli...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Qa Automation Testing Engineer interview:
  • HashMaps
Interview preparation tips for other job seekers - Accenture name is big but they are hiring for some other role and select people from other role in the interview, my interviewer was also very rude

Skills evaluated in this interview

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

It was Average.......,....

Round 2 - Coding Test 

Medium level of difficulties

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a QA Automation Testing Engineer with 5 years of experience in creating and executing test cases for software applications.

    • 5 years of experience in QA Automation Testing

    • Proficient in creating and executing test cases

    • Strong knowledge of automation tools like Selenium and JUnit

    • Experience in testing web and mobile applications

    • Familiar with Agile methodology

  • Answered by AI
  • Q2. Tell me about your family
  • Q3. How was your day
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Difference between hash map and hash table
  • Ans. 

    HashMap is non-synchronized and allows null values and keys, while HashTable is synchronized and does not allow null values or keys.

    • HashMap is non-synchronized and not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values and keys, while HashTable does not allow null values or keys.

    • HashMap is generally preferred over HashTable for non-thread-safe operations due to better performance.

  • Answered by AI
  • Q2. What is final finally finalize
  • Ans. 

    final, finally, and finalize are keywords in Java used for different purposes.

    • final is a keyword used to declare constants, prevent method overriding, and prevent inheritance.

    • finally is a block of code that is always executed, whether an exception is thrown or not.

    • finalize is a method used for cleanup operations before an object is garbage collected.

  • Answered by AI
  • Q3. What is idempotent in API
  • Ans. 

    Idempotent in API means that making the same request multiple times has the same effect as making it once.

    • Idempotent operations produce the same result regardless of how many times they are called.

    • GET and PUT requests are typically idempotent, while POST requests are not.

    • For example, sending a PUT request to update a resource should have the same result whether it is sent once or multiple times.

  • Answered by AI
  • Q4. Pillars of JAVA and explain with example
  • Ans. 

    The pillars of JAVA are Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

    • 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 based on the ob...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. 1. Staleelement exception
  • Q2. 2. Report part, jenkins,

IBM Interview FAQs

How many rounds are there in IBM Qa Automation Testing Engineer interview?
IBM interview process usually has 1-2 rounds. The most common rounds in the IBM interview process are HR, Coding Test and Behavioral.
What are the top questions asked in IBM Qa Automation Testing Engineer interview?

Some of the top questions asked at the IBM Qa Automation Testing Engineer interview -

  1. What is the different types of draw back of selen...read more
  2. What is the different types of frameworks selen...read more
  3. How to handle the scroll hand...read more

Tell us how to improve this page.

IBM Qa Automation Testing Engineer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
IBM Qa Automation Testing Engineer Salary
based on 41 salaries
₹4.4 L/yr - ₹18 L/yr
59% more than the average Qa Automation Testing Engineer Salary in India
View more details

IBM Qa Automation Testing Engineer Reviews and Ratings

based on 3 reviews

4.4/5

Rating in categories

2.9

Skill development

4.5

Work-life balance

3.4

Salary

3.5

Job security

3.5

Company culture

2.4

Promotions

3.4

Work satisfaction

Explore 3 Reviews and Ratings
Application Developer
11.7k salaries
unlock blur

₹5.4 L/yr - ₹24 L/yr

Software Engineer
5.5k salaries
unlock blur

₹5.4 L/yr - ₹22.2 L/yr

Advisory System Analyst
5.2k salaries
unlock blur

₹9.4 L/yr - ₹26 L/yr

Senior Software Engineer
4.8k salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Senior Systems Engineer
4.6k salaries
unlock blur

₹5.7 L/yr - ₹20.4 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.7
Compare

Cognizant

3.8
Compare

Accenture

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