Upload Button Icon Add office photos

Filter interviews by

eAppSys Senior Test Lead Interview Questions and Answers

Updated 9 Aug 2024

eAppSys Senior Test Lead Interview Experiences

1 interview found

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

I applied via Job Portal and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Why you have applied to this company
  • Ans. 

    I applied to this company because of its reputation for innovation and commitment to quality.

    • Impressed by company's track record of successful projects

    • Excited about the opportunity to work with cutting-edge technology

    • Positive reviews from current and former employees

  • Answered by AI
  • Q2. Why do you want to work for this company
  • Ans. 

    I am impressed by the company's innovative products and strong reputation in the industry.

    • Impressed by innovative products

    • Strong reputation in the industry

    • Opportunity for growth and development

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. They were not responsive
  • Q2. Not good experience
Round 3 - HR 

(2 Questions)

  • Q1. Bad experience poor attitude egostic people
  • Q2. Mean rude manipulative people
  • Ans. 

    Rude, manipulative people can be difficult to work with and may create a toxic work environment.

    • Set boundaries and assert yourself when dealing with such individuals.

    • Document interactions and seek support from management or HR if necessary.

    • Focus on maintaining professionalism and not stooping to their level.

    • Consider seeking guidance from a therapist or counselor to cope with the stress.

    • Examples: A colleague who takes c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - over all not good experience working with this kind company

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain how to build the test process when the new project starts
  • Ans. 

    To build the test process for a new project, start by understanding project requirements, creating test plan, designing test cases, executing tests, and continuously improving the process.

    • Understand project requirements and objectives

    • Create a test plan outlining scope, objectives, resources, and timelines

    • Design test cases based on requirements and risks

    • Execute tests using appropriate tools and techniques

    • Continuously mo

  • Answered by AI
  • Q2. How do we manage testing activities when the deadline is near and not enough time to finish test?
  • Ans. 

    Prioritize testing based on critical functionalities, automate repetitive tests, involve stakeholders in risk assessment, and communicate effectively.

    • Prioritize testing based on critical functionalities to ensure essential features are thoroughly tested.

    • Automate repetitive tests to save time and focus on more critical test scenarios.

    • Involve stakeholders in risk assessment to identify key areas to focus on and potential...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for QA methodologies as well as technical coding skill

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Testing related questions
Round 2 - Technical 

(1 Question)

  • Q1. Management skill questions
Round 3 - HR 

(1 Question)

  • Q1. Salary related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Framework structure,POM,TestNG,BDD cucumber
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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Past company work experience
Round 3 - HR 

(1 Question)

  • Q1. All past work experience and relevant documents

I applied via Naukri.com and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Core Java, Selenium Questions, Protractor, Jenkins, Framework Creation, Cucumber BDD, Test Data Parameterization
Round 2 - Behavioral 

(1 Question)

  • Q1. Project Overview, Their Expectations from you
Round 3 - HR 

(1 Question)

  • Q1. HR discussion for Salary Negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to have knowledge on what you have written in your resume.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(9 Questions)

  • Q1. Difference between absolute and relative Xpath
  • Ans. 

    Absolute Xpath starts from the root element, while relative Xpath starts from any node in the DOM structure.

    • Absolute Xpath starts with a single forward slash (/) and starts selection from the root node.

    • Relative Xpath starts with a double forward slash (//) and starts selection from the current node or any node in the DOM structure.

    • Absolute Xpath is more brittle and prone to breaking if the structure of the page changes...

  • Answered by AI
  • Q2. What would be return if multiple tabs are open
  • Ans. 

    The return would be the number of tabs open in the browser.

    • The return value would be an integer representing the count of open tabs.

    • For example, if there are 5 tabs open, the return value would be 5.

  • Answered by AI
  • Q3. What are the waits in selenium
  • Ans. 

    Types of waits in Selenium include Implicit Wait, Explicit Wait, and Fluent Wait.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further in the code.

    • Fluent Wait: Waits for a condition to be true with a defined polling frequency.

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

  • Answered by AI
  • Q4. Exceptions in selenium
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution, disrupting the flow of the test script.

    • Exceptions are thrown when there is an unexpected behavior in the application under test or in the test script itself.

    • Common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, and StaleElementReferenceException.

    • Handling exceptions in Selenium can be done using try-...

  • Answered by AI
  • Q5. What is feature and step definitions in cucumber BDD
  • Ans. 

    Feature files contain high-level description of the functionality to be tested, while step definitions are the implementation of the steps in the feature file using code.

    • Feature files are written in Gherkin syntax and describe the behavior of the application in plain text.

    • Step definitions are written in programming languages like Java, Ruby, etc., and map the steps in the feature file to automation code.

    • Feature files a...

  • Answered by AI
  • Q6. How to input data in cucumber
  • Ans. 

    Data can be input in Cucumber using feature files and step definitions.

    • Data can be input in feature files using scenarios and scenario outlines

    • Step definitions can be used to define the actions to be taken with the input data

    • Data tables can be used in feature files to input structured data

    • Examples keyword can be used in scenario outlines to provide multiple sets of input data

  • Answered by AI
  • Q7. Basic Java questions like access modifiers, method overloading and overriding
  • Q8. What is Test case, Test plan and Test Secenarios
  • Ans. 

    Test case is a set of conditions or variables under which a tester will determine whether a system under test satisfies requirements. Test plan is a document outlining the scope, approach, resources, and schedule of testing activities. Test scenarios are detailed descriptions of possible interactions with the system.

    • Test case: specific conditions to be tested, expected results, steps to execute

    • Test plan: overall strate...

  • Answered by AI
  • Q9. Hooks in Java
  • Ans. 

    Hooks in Java are methods that allow subclasses to override or extend the behavior of a superclass.

    • Hooks are commonly used in frameworks like JUnit and TestNG for test automation.

    • They are often used for setup and teardown operations before and after test methods.

    • Examples include @Before, @After, @BeforeClass, and @AfterClass annotations in JUnit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The second round interview was quite challenging, with numerous questions focused on core Java topics such as data structures and linked lists. It felt less like a testing interview and more akin to a developer interview.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Write java program to print sum of digits from a given string eg: "abcd23"
  • Ans. 

    Java program to print sum of digits from a given string

    • Iterate through each character in the string

    • Check if the character is a digit using Character.isDigit() method

    • Convert the digit character to integer using Character.getNumericValue() method

    • Sum up all the digits found in the string

  • Answered by AI
  • Q2. Explain oops concepts used in your framework with example?
  • Ans. 

    OOPs concepts used in the framework include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance is used to create a parent-child relationship between classes. For example, a base class 'Page' can be inherited by 'HomePage' and 'LoginPage' classes.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass. For instance, a 'click' method can be implemented different...

  • Answered by AI
  • Q3. Explain polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example of compile-time polymorphism: function overloading in Java.

    • Example of runtime polymorphism: method overriding in Java

  • Answered by AI
  • Q4. Java program to print the sum of elements in string array eg: String[] arr = {"1","2","3"}
  • Ans. 

    Java program to print the sum of elements in a string array.

    • Convert each element in the string array to an integer using Integer.parseInt()

    • Sum up all the integers to get the total sum

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Java related coding and questions related to selenium

Round 2 - Technical 

(1 Question)

  • Q1. Selenium,java,testng,cucumber related questions
Round 3 - Technical 

(1 Question)

  • Q1. Framework Related Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Must have knowledge in framework that we use
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between sdlc and stlc
  • Ans. 

    SDLC is Software Development Life Cycle which focuses on development of software, while STLC is Software Testing Life Cycle which focuses on testing of software.

    • SDLC is the process of developing software from planning to deployment, while STLC is the process of testing software from test planning to test closure.

    • SDLC includes phases like requirements gathering, design, coding, testing, and deployment, while STLC includ...

  • Answered by AI
  • Q2. Bug life cycle? Defect triage

Interview Preparation Tips

Topics to prepare for Deloitte Test Engineer interview:
  • Basic concepts

eAppSys Interview FAQs

How many rounds are there in eAppSys Senior Test Lead interview?
eAppSys interview process usually has 3 rounds. The most common rounds in the eAppSys interview process are Technical and HR.
What are the top questions asked in eAppSys Senior Test Lead interview?

Some of the top questions asked at the eAppSys Senior Test Lead interview -

  1. mean rude manipulative peo...read more
  2. bad experience poor attitude egostic peo...read more
  3. they were not respons...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Associate Consultant
18 salaries
unlock blur

₹2.8 L/yr - ₹12 L/yr

Associate Technical Consultant
8 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Technical Consultant
5 salaries
unlock blur

₹6.8 L/yr - ₹12 L/yr

Consultant
4 salaries
unlock blur

₹6 L/yr - ₹17 L/yr

Oracle Technical Consultant
4 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Explore more salaries
Compare eAppSys with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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