Incedo Automation Testing | SDET | Interview Experience | Gurgaon

In this article we will cover Incedo Automation Testing Interview Questions from 2022 which could help you prepare in advance.

Incedo Automation Testing | SDET | Interview Experience 

Company - Incedo Pvt Ltd
Job role - Automation Engineer | SDET
Job location- Gurgaon
Interviewer - Vipin Grover

Date - October 27 2022 

  • Tell me about yourself?
  • What testing frameworks have you used in your recent projects?
  • Open Makemytrip and click on search - find xpath of Vistara.
  • Write a program to find out missing number.
    • For example 1,2,3,4,6. Your program should print 5, do not use any loops.
  • Write a program to print below output.
    • Input - My name is abhishek
    • Output - My eman is kehsihba
    • Interviewer needed dynamic approach for above program.
  • What is the difference between findElementBy and findElementsBy? Tell atleast 3-4 differences.
    • This method is used to return a single webelement in a webpage that matches the specified criteria.
    • It returns the very first element which it finds in a webpage
    • If no element is found, it returns NoSuchElementException.
    • On Other hand FindElementsBy returns multiple webelements in a webpage
    • It returns a list of webelements
    • If no elements are found, it returns an empty list.
  • Explain your framework in detail?
  • What is the difference between POM and page factory?
  • Why do we use Set in getWindowHandles?
    • Each browser window or tab has a unique identifier associated with it. Using a set ensures that each window handle is stored only once, eliminating duplicates. This is important because you don't want to switch to the same window/tab multiple times.
    • example
    • Set<String> windowHandles = driver.getWindowHandles(); for (String handle : windowHandles) { // Switch to each window handle and perform actions driver.switchTo().window(handle); // Perform actions in the current window/tab }
  • What collections have you used?
Keep in mind, Incedo only takes 1 technical round of interview and it will be very thorough. Prepare well before appearing for the interview. Hope above experience helps you.

Comments

Popular posts from this blog

Azure Tutorials Series - Azure Networking

Testing in CI/CD

Azure Tutorials Series - IaaS vs PaaS vs SaaS