Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Quinbay Sdet Automation Test Engineer Interview Questions and Answers

Updated 10 Jun 2024

Quinbay Sdet Automation Test Engineer Interview Experiences

2 interviews found

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

Puzzles calendar age java questions

Round 2 - Coding Test 

Java array string puzzle

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

I applied via Campus Placement and was interviewed before May 2022. There were 5 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 Resume tips
Round 2 - Coding Test 

1easy 1 medium question

Round 3 - One-on-one 

(3 Questions)

  • Q1. Technical interview
  • Q2. Oops concepts intermediate level
  • Q3. Data structures basic level
Round 4 - One-on-one 

(1 Question)

  • Q1. Technical interview round 2
Round 5 - HR 

(1 Question)

  • Q1. Personality questions

Sdet Automation Test Engineer Interview Questions Asked at Other Companies

Q1. Wait in selenium and how to find all links present in a page xpat ... read more
Q2. What is page object model and test ng annotations
Q3. How to handle alert in selenium and methods
Q4. How to take screenshot and project framework
Q5. What is software testing life cycle

Interview questions from similar companies

Interview experience
5
Excellent
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 Resume tips
Round 2 - Aptitude Test 

Online aptitude test with reasoning and java

Round 3 - Technical 

(2 Questions)

  • Q1. Explain all Oops concepts briefly
  • Ans. 

    Oops concepts are fundamental principles of object-oriented programming like inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of objects to take on multiple forms based on the context.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Abstraction: Hiding the complex implemen...

  • Answered by AI
  • Q2. One basic level java question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I was interviewed before Feb 2023.

Round 1 - Aptitude Test 

Basic apti ques grammer and all

Round 2 - Technical 

(1 Question)

  • Q1. Java, spring, html
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Java and automation question

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Introduction about self
  • Ans. 

    I am a passionate SDET Automation Test Engineer with 5 years of experience in creating and executing automated test scripts.

    • 5 years of experience in automation testing

    • Proficient in creating and executing automated test scripts

    • Strong knowledge of testing tools like Selenium and JUnit

    • Experience in Agile development environment

    • Excellent problem-solving skills

  • Answered by AI
  • Q2. What is the difference between close and quit
  • Q3. Reverse a string program
  • Ans. 

    Program to reverse a string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end of the string

    • Repeat until the entire string is reversed

  • Answered by AI
  • Q4. How to handle pop-up
  • Ans. 

    To handle pop-ups in automation testing, use methods like switchTo().alert(), accept(), dismiss(), getText()

    • Use switchTo().alert() method to switch focus to the pop-up

    • Use accept() method to click on the 'OK' button in the pop-up

    • Use dismiss() method to click on the 'Cancel' button in the pop-up

    • Use getText() method to retrieve the text from the pop-up for validation

  • Answered by AI
  • Q5. What is getWindowsHandles
  • Ans. 

    getWindowsHandles is a method in Selenium WebDriver used to get the window handles of all the open browser windows.

    • getWindowsHandles returns a set of window handles as strings.

    • It is useful for switching between multiple browser windows during automation testing.

    • Example: Set handles = driver.getWindowHandles();

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Asked about jenkins
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed in Mar 2024.

Round 1 - Coding Test 

Java, selenium,1 hours

Round 2 - Technical 

(2 Questions)

  • Q1. Java constructor
  • Q2. Collection interface
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Relocation procee
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

60 mints, gform ,topics like train ,age ,numbers,propability,

Interview Preparation Tips

Interview preparation tips for other job seekers - do the interview with confidence
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Bug life cycle and agile proces.
  • Q2. Implicit and Explicit wait, key difference and the syntax.
  • Ans. 

    Implicit and Explicit wait are used in Selenium for handling synchronization issues in test automation.

    • Implicit wait is set globally for the entire test script, while explicit wait is applied only to specific elements.

    • Implicit wait waits for a specified amount of time before throwing a NoSuchElementException, while explicit wait waits for a specific condition to be met before proceeding.

    • Syntax for implicit wait: driver...

  • Answered by AI
  • Q3. Xpath writing with parent child relation
  • Ans. 

    Xpath writing with parent child relation involves specifying the path to locate elements based on their hierarchical relationship.

    • Use '/' to specify direct child elements

    • Use '//' to specify any descendant elements

    • Use '[]' to specify conditions for selecting elements

    • Example: //div[@class='parent']/child::span

  • Answered by AI
  • Q4. Java constructor oops concepts and code for swapping two numbers
  • Ans. 

    Java constructor is a special type of method used to initialize objects. Swapping two numbers can be done using a temporary variable.

    • Java constructor is used to initialize objects in a class.

    • Swapping two numbers can be done by using a temporary variable.

    • Example code for swapping two numbers using constructor:

    • public class NumberSwapper {

    • int num1;

    • int num2;

    • public NumberSwapper(int a, int b) {

    • num1 = a;

    • num2 = ...

  • Answered by AI
Round 2 - Coding Test 

Amazon website needs to validate drop-down value

Contribute & help others!
anonymous
You can choose to be anonymous

Quinbay Interview FAQs

How many rounds are there in Quinbay Sdet Automation Test Engineer interview?
Quinbay interview process usually has 3-4 rounds. The most common rounds in the Quinbay interview process are Coding Test, One-on-one Round and Resume Shortlist.
How to prepare for Quinbay Sdet Automation Test 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 Quinbay. The most common topics and skills that interviewers at Quinbay expect are Automation Testing, Cucumber, Java, Selenium and Testng.
What are the top questions asked in Quinbay Sdet Automation Test Engineer interview?

Some of the top questions asked at the Quinbay Sdet Automation Test Engineer interview -

  1. Oops concepts intermediate le...read more
  2. Data structures basic le...read more
  3. Technical interview roun...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Lime AI

No Interviews

INTERVIEWS

Company Interviews

No Interviews

INTERVIEWS

TCS

No Interviews

INTERVIEWS

McCain Foods

No Interviews

INTERVIEWS

Lime AI

No Interviews

Tell us how to improve this page.

Quinbay Sdet Automation Test Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more
Quinbay Sdet Automation Test Engineer Salary
based on 17 salaries
Lock Unlock
₹7 L/yr - ₹10.1 L/yr
38% less than the average Sdet Automation Test Engineer Salary in India
View more details

Quinbay Sdet Automation Test Engineer Reviews and Ratings

based on 3 reviews

3.7/5

Rating in categories

4.2

Skill development

3.2

Work-life balance

3.6

Salary

3.2

Job security

4.2

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
107 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
102 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Developer
44 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Sdet
19 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Sdet Automation Test Engineer
17 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Quinbay with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent