Upload Button Icon Add office photos
Engaged Employer

i

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

e-Zest Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

e-Zest Automation Test Engineer Interview Questions, Process, and Tips

Updated 16 Apr 2023

e-Zest Automation Test Engineer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed before Apr 2022. There were 2 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 - Technical 

(12 Questions)

  • Q1. What is FirefoxDriver
  • Ans. 

    FirefoxDriver is a class in Selenium WebDriver used to automate Firefox browser testing.

    • FirefoxDriver is a part of Selenium WebDriver library.

    • It is used to automate testing of web applications on Firefox browser.

    • It supports all the major functionalities of Firefox browser.

    • It can be used with different programming languages like Java, Python, etc.

    • Example: FirefoxDriver driver = new FirefoxDriver();

  • Answered by AI
  • Q2. Implicit and explicit wait explanation
  • Ans. 

    Implicit wait waits for a certain amount of time before throwing an exception while explicit wait waits for a certain condition to occur before proceeding.

    • Implicit wait is set globally and is applied to all elements in the script

    • Explicit wait is set for a specific element and waits for a certain condition to be met before proceeding

    • Examples of conditions for explicit wait include element to be clickable, visible, or pr...

  • Answered by AI
  • Q3. What is performance testing
  • Ans. 

    Performance testing is the process of evaluating the speed, responsiveness, stability, and scalability of a software application.

    • It involves simulating real-world scenarios to measure the application's performance under different loads and stress levels.

    • Performance testing helps identify bottlenecks, memory leaks, and other issues that can affect the application's performance.

    • Examples of performance testing tools inclu...

  • Answered by AI
  • Q4. Different roles in Agile
  • Ans. 

    Different roles in Agile include Product Owner, Scrum Master, and Development Team.

    • Product Owner is responsible for defining and prioritizing the product backlog.

    • Scrum Master facilitates the Scrum process and removes any impediments that may arise.

    • Development Team is responsible for delivering a potentially releasable product increment at the end of each sprint.

  • Answered by AI
  • Q5. What is Agile Manifesto
  • Ans. 

    Agile Manifesto is a set of guiding values and principles for Agile software development.

    • Agile Manifesto emphasizes on individuals and interactions, working software, customer collaboration, and responding to change.

    • It values working software over comprehensive documentation.

    • It promotes adaptive planning and continuous improvement.

    • It encourages self-organizing teams and face-to-face communication.

    • Examples of Agile meth...

  • Answered by AI
  • Q6. Responsibilities of Scrum Master
  • Ans. 

    Scrum Master is responsible for facilitating the Scrum process and ensuring the team follows Agile principles.

    • Facilitating Scrum ceremonies (daily stand-ups, sprint planning, sprint review, and retrospective)

    • Removing impediments that hinder the team's progress

    • Coaching the team on Agile principles and practices

    • Ensuring the team follows the Scrum framework

    • Facilitating communication and collaboration between team members

  • Answered by AI
  • Q7. Test Scentarios for uploading video to Youtube
  • Q8. Performance Testing scenario for uploading video to Youtube
  • Ans. 

    Performance testing scenario for uploading video to Youtube

    • Create a test plan with realistic user scenarios

    • Simulate multiple users uploading videos simultaneously

    • Measure response time, throughput, and resource utilization

    • Test with different file sizes and formats

    • Monitor server and network performance

    • Analyze results and identify bottlenecks

  • Answered by AI
  • Q9. Stub and driver difference
  • Ans. 

    Stub is a fake implementation of a module while driver is a software component that interacts with the system under test.

    • Stub is used to simulate the behavior of a module that is not yet implemented or is unavailable for testing.

    • Driver is used to provide input to the system under test and to capture the output generated by it.

    • Stub is used in top-down approach while driver is used in bottom-up approach.

    • Example of stub i...

  • Answered by AI
  • Q10. Defect life cycle
  • Q11. Max salary query-sql
  • Q12. Joint query , what is left and right join

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Interview Questionnaire 

1 Question

  • Q1. About my college projects and about my passion

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - say individual ideas,plans, story's.say different opinions,speek confidentially, correctly answer Yes or no questions, correctly say interested and confidential job,

Interview Questionnaire 

1 Question

  • Q1. Questions on java and selenium

e-Zest Interview FAQs

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

Some of the top questions asked at the e-Zest Automation Test Engineer interview -

  1. Performance Testing scenario for uploading video to Yout...read more
  2. What is FirefoxDri...read more
  3. What is Agile Manife...read more

Tell us how to improve this page.

e-Zest Automation Test Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
e-Zest Automation Test Engineer Salary
based on 45 salaries
₹3 L/yr - ₹6.7 L/yr
35% less than the average Automation Test Engineer Salary in India
View more details
Softwaretest Engineer
561 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
304 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
220 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Quality Analyst
139 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
114 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare e-Zest with

Persistent Systems

3.5
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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