Premium Employer

i

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

Info Edge Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Info Edge Sdet Automation Test Engineer Interview Questions and Answers

Updated 4 Feb 2025

7 Interview questions

A Sdet Automation Test Engineer was asked 10mo ago
Q. What test cases would you design for an elevator?
Ans. 

Test cases for lift functionality

  • Test the lift buttons for each floor

  • Test the emergency stop button

  • Test the door open and close functionality

  • Test the capacity limit of the lift

  • Test the response time of the lift to call buttons

A Sdet Automation Test Engineer was asked 10mo ago
Q. What are some basic commands in Selenium?
Ans. 

Basic commands in Selenium include findElement, sendKeys, click, getText, and getTitle.

  • findElement - locates a single element on the web page

  • sendKeys - enters text into an input field

  • click - simulates a mouse click on an element

  • getText - retrieves the text of an element

  • getTitle - retrieves the title of the web page

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 do you handle alerts in Selenium, and what methods do you use ... read more
Q4. How to take screenshot and project framework
Q5. What is the software testing life cycle?
A Sdet Automation Test Engineer was asked 10mo ago
Q. What is the Actions class in Selenium and how is it used?
Ans. 

Actions class in Selenium is used to perform complex user interactions like drag and drop, double click, etc.

  • Actions class is part of the Selenium WebDriver API

  • It is used to perform advanced user interactions like drag and drop, double click, etc.

  • Actions class is used with the Actions class object to build and perform complex interactions

  • Example: Actions actions = new Actions(driver); actions.dragAndDrop(source, t...

A Sdet Automation Test Engineer was asked 11mo ago
Q. What is SDET?
Ans. 

SDET stands for Software Development Engineer in Test. They are responsible for writing code to automate testing processes.

  • SDET is a software engineer who specializes in writing code to automate testing processes

  • They work closely with developers to ensure software quality

  • SDET roles often involve creating and maintaining test frameworks and tools

  • Examples of SDET tools include Selenium, JUnit, and TestNG

A Sdet Automation Test Engineer was asked 4mo ago
Q. What is OOPS? What is multi threading?
Ans. 

OOPS stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data and code. Multi-threading is the ability of a CPU to execute multiple threads concurrently.

  • OOPS is a programming paradigm that uses objects to design applications.

  • It allows for encapsulation, inheritance, and polymorphism.

  • Example: Inheritance allows a class to inherit properties and met...

A Sdet Automation Test Engineer was asked 10mo ago
Q. Test cases of login/signup
Ans. 

Test cases for login/signup functionality

  • Verify valid credentials can successfully login

  • Verify invalid credentials cannot login

  • Verify user can sign up with valid information

  • Verify user cannot sign up with existing email

  • Verify password strength requirements during sign up

A Sdet Automation Test Engineer was asked 10mo ago
Q. Locators used in automation
Ans. 

Locators are used in automation testing to identify and interact with web elements on a webpage.

  • Locators are used to find elements on a webpage based on their attributes such as ID, class, name, etc.

  • Common locators include ID, class name, name, tag name, link text, partial link text, and XPath.

  • Using unique locators helps in creating stable and reliable automation scripts.

  • Examples: driver.findElement(By.id("element...

Are these interview questions helpful?

Info Edge Sdet Automation Test Engineer Interview Experiences

4 interviews found

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

(1 Question)

  • Q1. DSA and coding questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

One question for coding .

Round 2 - One-on-one 

(2 Questions)

  • Q1. Interview questions
  • Q2. What is sdet ?
  • Ans. 

    SDET stands for Software Development Engineer in Test. They are responsible for writing code to automate testing processes.

    • SDET is a software engineer who specializes in writing code to automate testing processes

    • They work closely with developers to ensure software quality

    • SDET roles often involve creating and maintaining test frameworks and tools

    • Examples of SDET tools include Selenium, JUnit, and TestNG

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Coding Test 

DSA mid level, programming questions like password checking function, pattern question.

Round 3 - Technical 

(1 Question)

  • Q1. What is OOPS? What is multi threading?
  • Ans. 

    OOPS stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data and code. Multi-threading is the ability of a CPU to execute multiple threads concurrently.

    • OOPS is a programming paradigm that uses objects to design applications.

    • It allows for encapsulation, inheritance, and polymorphism.

    • Example: Inheritance allows a class to inherit properties and methods ...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. How do you describe your personality?
  • Ans. 

    I am a detail-oriented, analytical, and adaptable individual with a strong work ethic.

    • Detail-oriented - I pay close attention to small details to ensure accuracy in my work.

    • Analytical - I enjoy problem-solving and analyzing data to find solutions.

    • Adaptable - I am able to quickly adjust to new situations and challenges.

    • Strong work ethic - I am dedicated and committed to producing high-quality results.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and be honest.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Technical 

(9 Questions)

  • Q1. Locators used in automation
  • Ans. 

    Locators are used in automation testing to identify and interact with web elements on a webpage.

    • Locators are used to find elements on a webpage based on their attributes such as ID, class, name, etc.

    • Common locators include ID, class name, name, tag name, link text, partial link text, and XPath.

    • Using unique locators helps in creating stable and reliable automation scripts.

    • Examples: driver.findElement(By.id("elementId"))...

  • Answered by AI
  • Q2. Test cases for lift
  • Ans. 

    Test cases for lift functionality

    • Test the lift buttons for each floor

    • Test the emergency stop button

    • Test the door open and close functionality

    • Test the capacity limit of the lift

    • Test the response time of the lift to call buttons

  • Answered by AI
  • Q3. Core concepts of java
  • Q4. String, String buffer, String Reader
  • Q5. Final, finally, finalize
  • Q6. Coding question on String and array
  • Q7. Actions class in selenium
  • Ans. 

    Actions class in Selenium is used to perform complex user interactions like drag and drop, double click, etc.

    • Actions class is part of the Selenium WebDriver API

    • It is used to perform advanced user interactions like drag and drop, double click, etc.

    • Actions class is used with the Actions class object to build and perform complex interactions

    • Example: Actions actions = new Actions(driver); actions.dragAndDrop(source, target...

  • Answered by AI
  • Q8. Basic commands in selenium
  • Ans. 

    Basic commands in Selenium include findElement, sendKeys, click, getText, and getTitle.

    • findElement - locates a single element on the web page

    • sendKeys - enters text into an input field

    • click - simulates a mouse click on an element

    • getText - retrieves the text of an element

    • getTitle - retrieves the title of the web page

  • Answered by AI
  • Q9. Testng annotations and xml file
Round 2 - Technical 

(5 Questions)

  • Q1. Puzzles of different kinds
  • Q2. Test cases of login/signup
  • Ans. 

    Test cases for login/signup functionality

    • Verify valid credentials can successfully login

    • Verify invalid credentials cannot login

    • Verify user can sign up with valid information

    • Verify user cannot sign up with existing email

    • Verify password strength requirements during sign up

  • Answered by AI
  • Q3. Reason for for job change
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic environment.

    • Looking for opportunities to expand my skill set

    • Interested in working on cutting-edge technologies

    • Seeking a more collaborative team environment

  • Answered by AI
  • Q4. Xpath creation and basic code
  • Q5. Basic java and selenium
Round 3 - HR 

(2 Questions)

  • Q1. Behaviour questions and salary negotiation
  • Q2. Reason for change
  • Ans. 

    The reason for change can be due to technological advancements, business needs, customer feedback, or process improvements.

    • Technological advancements: Updating software tools or frameworks to improve efficiency.

    • Business needs: Adapting to new market trends or regulations.

    • Customer feedback: Making changes based on user experience or satisfaction.

    • Process improvements: Streamlining workflows for better productivity.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Info Edge Sdet Automation Test Engineer interview:
  • Rest assured
  • Selenium
  • Core Java
  • Testng

Skills evaluated in this interview

What people are saying about Info Edge

View All
crunchylamprey
Verified Icon
1w
works at
Info Edge
What's that one thing that makes you seriously reconsider joining a startup?
Hire and fire
0%
Toxic ceo/lala ram
0%
Work life balance
0%
Lack of vision
0%
47 participants . expiring in 27m
Got a question about Info Edge?
Ask anonymously on communities.

Interview questions from similar companies

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

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

Round 1 - Aptitude Test 

It was very good 60 questions

Round 2 - Coding Test 

3 coding question everhthing was hard

Round 3 - Technical 

(2 Questions)

  • Q1. What is java and cpp and dbms sql etc
  • Ans. 

    Java is a popular programming language, C++ is another programming language, and DBMS SQL is a language used for managing databases.

    • Java is an object-oriented programming language commonly used for building web applications and software.

    • C++ is a high-level programming language often used for system programming and game development.

    • DBMS SQL is a language used to interact with relational databases, allowing users to retr...

  • Answered by AI
  • Q2. What is python, oops and inheritance
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability. OOPs (Object-Oriented Programming) is a programming paradigm that uses objects and classes. Inheritance is a feature of OOPs that allows a class to inherit properties and behavior from another class.

    • Python is a versatile, interpreted language used for web development, data analysis, artificial intelligence, and more.

    • OOPs focuses on cr...

  • Answered by AI

Skills evaluated in this interview

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

3 hour test. 20 MCQs and 2 Coding problems

Round 2 - Technical 

(1 Question)

  • Q1. Prefix Sum and left sum of binary tree.
  • Ans. 

    Prefix Sum and left sum of binary tree involves calculating the sum of all nodes in a binary tree and the sum of nodes on the left side of each node.

    • Calculate prefix sum of binary tree by traversing in a pre-order manner and keeping track of the running sum.

    • To calculate left sum of binary tree, traverse the tree in a pre-order manner and keep track of the sum of nodes on the left side of each node.

    • Example: For a binary...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Recursion to memoization DP problem and follow ups.
  • Ans. 

    Recursion to memoization DP problem involves optimizing recursive solutions by storing intermediate results.

    • Recursion involves solving a problem by breaking it down into smaller subproblems and calling the function recursively.

    • Memoization involves storing the results of expensive function calls and reusing them when the same inputs occur again.

    • Dynamic Programming (DP) involves solving problems by breaking them down int...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Accepted. Prepare DSA.

Skills evaluated in this interview

Sdet Automation Test Engineer Interview Questions & Answers

Amazon user image Madireddy Jagadeeswarreddy

posted on 16 Feb 2024

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

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

Round 1 - Coding Test 

It consisted of 2 dsa questions

Round 2 - HR 

(2 Questions)

  • Q1. Tell me abiut yourself
  • Ans. 

    I am an experienced SDET Automation Test Engineer with a strong background in software testing and test automation.

    • I have a Bachelor's degree in Computer Science and have been working in the field for over 5 years.

    • I have expertise in designing and implementing test automation frameworks using tools like Selenium and Cucumber.

    • I have experience in writing test scripts, executing test cases, and analyzing test results.

    • I a...

  • Answered by AI
  • Q2. Your weaknesses

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Design URL shorterner
  • Ans. 

    Design a URL shortener service to generate short URLs for long URLs.

    • Use a hashing algorithm to generate unique short codes for long URLs.

    • Store the mapping of short codes to long URLs in a database.

    • Redirect users from short URLs to the corresponding long URLs.

    • Implement analytics to track usage and performance of the service.

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. The hiring manager asked me to code the right view of the tree.
  • Ans. 

    Implement a function to return the right view of a binary tree.

    • Use a level order traversal (BFS) to explore the tree.

    • Keep track of the last node at each level to form the right view.

    • Utilize a queue to facilitate the traversal of nodes level by level.

    • Example: For the tree [1, 2, 3, null, 5, null, 4], the right view is [1, 3, 4].

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer asked me that he is not keen on checking the proper syntax. He is okay with syntax issue. He was being too nice and showing everything is going fine and then later within 30 mins send rejection mail.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Assignment 

First was round based on Quality engineering concepts and aptitude combob

Round 2 - Technical 

(2 Questions)

  • Q1. Question on How proxy configured for device
  • Ans. 

    Proxy configuration for devices involves setting up a server to route network requests, enhancing security and performance.

    • Identify the proxy server address and port number (e.g., 192.168.1.1:8080).

    • Configure the device's network settings to use the proxy (e.g., in Wi-Fi settings on mobile devices).

    • Test the connection to ensure traffic is routed through the proxy (e.g., using a browser to check IP).

    • Consider authenticati...

  • Answered by AI
  • Q2. What is test scenario,test case.
  • Ans. 

    Test scenario is a high-level description of the functionality to be tested, while test case is a detailed step-by-step procedure to validate the functionality.

    • Test scenario is a broad description of what needs to be tested, while test case is a detailed set of steps to verify a specific aspect of the scenario.

    • Test scenario is usually written in a more general and abstract way, while test case is more specific and conc...

  • Answered by AI

Skills evaluated in this interview

Info Edge Interview FAQs

How many rounds are there in Info Edge Sdet Automation Test Engineer interview?
Info Edge interview process usually has 2-3 rounds. The most common rounds in the Info Edge interview process are Technical, Coding Test and HR.
How to prepare for Info Edge 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 Info Edge. The most common topics and skills that interviewers at Info Edge expect are Selenium Testing, API Automation, Appium, Automation Testing and Cypress.
What are the top questions asked in Info Edge Sdet Automation Test Engineer interview?

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

  1. What is OOPS? What is multi threadi...read more
  2. Basic commands in selen...read more
  3. Actions class in selen...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 7 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 25%
2-4 weeks 75%
View more
Join Info Edge India’s first internet classifieds company.

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.4k Interviews
Flipkart Interview Questions
3.9
 • 1.5k Interviews
PolicyBazaar Interview Questions
3.7
 • 472 Interviews
Lenskart Interview Questions
3.2
 • 360 Interviews
JustDial Interview Questions
3.5
 • 358 Interviews
Eternal Limited Interview Questions
3.7
 • 327 Interviews
Zepto Interview Questions
3.5
 • 296 Interviews
Naukri Interview Questions
4.1
 • 200 Interviews
Uber Interview Questions
4.2
 • 155 Interviews
View all
Info Edge Sdet Automation Test Engineer Salary
based on 21 salaries
₹9 L/yr - ₹16.6 L/yr
23% less than the average Sdet Automation Test Engineer Salary in India
View more details

Info Edge Sdet Automation Test Engineer Reviews and Ratings

based on 3 reviews

4.6/5

Rating in categories

4.2

Skill development

4.5

Work-life balance

4.2

Salary

4.6

Job security

4.1

Company culture

4.2

Promotions

4.2

Work satisfaction

Explore 3 Reviews and Ratings
SDET (Automation Test Engineer)

Bangalore / Bengaluru

1-3 Yrs

Not Disclosed

Explore more jobs
Senior Executive
681 salaries
unlock blur

₹2.6 L/yr - ₹8 L/yr

Sales Executive
658 salaries
unlock blur

₹10 L/yr - ₹10 L/yr

Assistant Manager
612 salaries
unlock blur

₹3.3 L/yr - ₹9.5 L/yr

Associate Senior Executive
599 salaries
unlock blur

₹2.2 L/yr - ₹6.2 L/yr

Senior Software Engineer
368 salaries
unlock blur

₹10 L/yr - ₹26.1 L/yr

Explore more salaries
Compare Info Edge with

TCS

3.6
Compare

Amazon

4.0
Compare

Flipkart

3.9
Compare

Indiamart Intermesh

3.6
Compare
write
Share an Interview