Upload Button Icon Add office photos
Engaged Employer

i

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

ivy Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 709 Reviews

Filter interviews by

ivy Sdet Automation Test Engineer Interview Questions and Answers

Updated 20 Aug 2024

ivy Sdet Automation Test Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Mainly related to JAVA programming
  • Q2. Selenium project reviews
Round 2 - Technical 

(2 Questions)

  • Q1. Reverse the string
  • Ans. 

    Reverse a given string

    • Create a new empty string to store the reversed string

    • Iterate through the original string from end to start and append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q2. Scenario based questions

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. LOCATE X PATH , GET WINDOW HANDLE
  • Ans. 

    Locate element using Xpath and retrieve window handle in automation testing.

    • Use findElement method with By.xpath to locate the element using Xpath.

    • Use getWindowHandle method to retrieve the window handle.

  • Answered by AI
  • Q2. TYPES OF WAITS WITH THEIR SYNTAX
  • Ans. 

    Types of waits in automation testing with their syntax

    • Implicit Wait: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

    • Explicit Wait: WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("elementID")));

    • Fluent Wait: Wait wait = new FluentWait(driver).withTimeout(Duration.ofSeconds(10)).pollingEvery(Duration.ofSeconds(2)).ignoring(NoSuchElementEx

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Work Experience?
  • Q2. Questions Regarding CV ?
  • Q3. Question on Xpath (Selenium)
  • Q4. Questions on Python basic coding
  • Q5. Questions on API Testing
Round 2 - Coding Test 

Q1) Write a functions to perform all CRUD in api.
Q2) Given two sorted list
ar1 =[1,2,3,4,7,7,12,18,19]
ar2 = [3, 4, 7, 7,14, 18, 19]

You can add and find largest sum but you can switch when ar1 and ar2 have same numbers.

Solution: you can base your solution on merge algo and recursively call your function to return largest sum possible.

Interview Preparation Tips

Interview preparation tips for other job seekers - The first interviewer was very up high in the rank but was very bad at taking interviews.
He did said ask if you have anything to ask.
But when I started asking questions, he behaved very badly .
I do not remember his name. You should forget toxic people immediately.
It was shocking to me that he was Staff Engineer.

The second round of interview was the best experience I ever had.
I remember his name but for sake of confidconfidentiality, I will only tell his position. He was MTS 3.
The questions were very good and the interviewer was very soft spoken and knowledgeable.
He answered my questions and would love to see these people climb up the ladder rather than others.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test on hackerrank. Solve 30 day code challange on haackerrank and you will be able to clear it.

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

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

Round 1 - Coding Test 

Frequency array, java collection, missing number

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

I applied via LinkedIn and was interviewed before Aug 2023. There were 6 interview rounds.

Round 1 - Aptitude Test 

General Aptitude test was conducted

Round 2 - Technical 

(1 Question)

  • Q1. String related problem and code the solution. Some Mongodb questions
Round 3 - Technical 

(1 Question)

  • Q1. OOPS concept, testing methods and other QA related questions
Round 4 - Technical 

(1 Question)

  • Q1. Test Scenarios discussion, Selenium basics and database problems
Round 5 - One-on-one 

(1 Question)

  • Q1. In depth technical discussion of current projects
Round 6 - HR 

(1 Question)

  • Q1. Cultural fitment round and basic personal questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2022. There were 3 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 - Aptitude Test 

Logic based questions

Round 3 - Coding Test 

Tough and easy at the same time

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode

Sde1 Interview Questions & Answers

UKG user image Anonymous

posted on 7 Aug 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Coding Test 

Aptitude and coding round, one coding question and others are computer fundamentals

Round 2 - Technical 

(2 Questions)

  • Q1. Return true if Subarray is present whose sum is 0
  • Q2. Project, oops, dbms
Round 3 - Technical 

(2 Questions)

  • Q1. Subarray sun equal to k
  • Q2. Project, oops, dbms
Round 4 - HR 

(1 Question)

  • Q1. Did not got slected i answered all still

Sdet Interview Questions & Answers

Cvent user image Saurav Kumar Jha

posted on 27 Nov 2024

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

(1 Question)

  • Q1. Intro of yourself
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. LOCATE X PATH , GET WINDOW HANDLE
  • Ans. 

    Locate element using Xpath and retrieve window handle in automation testing.

    • Use findElement method with By.xpath to locate the element using Xpath.

    • Use getWindowHandle method to retrieve the window handle.

  • Answered by AI
  • Q2. TYPES OF WAITS WITH THEIR SYNTAX
  • Ans. 

    Types of waits in automation testing with their syntax

    • Implicit Wait: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

    • Explicit Wait: WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("elementID")));

    • Fluent Wait: Wait wait = new FluentWait(driver).withTimeout(Duration.ofSeconds(10)).pollingEvery(Duration.ofSeconds(2)).ignoring(NoSuchElementEx

  • Answered by AI

Skills evaluated in this interview

ivy Interview FAQs

How many rounds are there in ivy Sdet Automation Test Engineer interview?
ivy interview process usually has 2 rounds. The most common rounds in the ivy interview process are Technical.
What are the top questions asked in ivy Sdet Automation Test Engineer interview?

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

  1. Reverse the str...read more
  2. Mainly related to JAVA programm...read more
  3. Selenium project revi...read more

Tell us how to improve this page.

ivy Sdet Automation Test Engineer Salary
based on 14 salaries
₹7.7 L/yr - ₹12 L/yr
39% less than the average Sdet Automation Test Engineer Salary in India
View more details
Software Engineer
832 salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Senior Software Engineer
583 salaries
unlock blur

₹8 L/yr - ₹22.5 L/yr

Test Engineer
365 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

System Analyst
327 salaries
unlock blur

₹11.8 L/yr - ₹28 L/yr

Senior Test Engineer
315 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Explore more salaries
Compare ivy with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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