Automation

  Home  Testing  Automation


“Automation related Frequently Asked Questions by expert members with professional career as Automation. These list of interview questions and answers will help you strengthen your technical skills, prepare for the new job interview and quickly revise your concepts”



108 Automation Questions And Answers

101⟩ Do you know what is a XPath?

XPath is a language that describes a way to locate and process items in Extensible Markup Language (XML) documents by using an addressing syntax based on a path through the document's logical structure or hierarchy.

 120 views

102⟩ Explain me what could be the cause of Selenium WebDriver test to fail?

There are some causes of Selenium WebDriver test to fail:

☛ SeleniumWebDriver element waiting to access did not appear on the web page and the operation timed out

☛ SeleniumWebDriver is trying to access not created element

☛ SeleniumWebDriver cannot locate the element, because the locator has been changed

 134 views

103⟩ Tell us what is JUnit? And what is JUnit Annotation?

JUnit is an open source Java applications testing framework, introduced by Apache. A process of adding a special form of syntactic metadata to Java source code is called annotation. JUnit Annotations are: variables, parameters, packages, methods and classes.

 130 views

107⟩ Do you know what is a data-driven framework?

The Data Driven test design framework follows a design paradigm where test logic is fixed but varies the test data. The data itself can be in different repositories like a simple .csv file, .json file or .xls sheet, or database and can add the tests merely updating those external files or DB (instead of placing in test code itself).

 130 views