<<Complete WebDriverIO Tutorial>> Next Post>> Introduction to CodeceptJS Following are the content by which you can be familiar with Codeceptjs:- Note: All the terms and tools mentioned in this article will be explained in detail in the upcoming…
Selenium Java Interview Questions and Answers Part-22 1) How to select an option in list box? We can use the select class and methods to select an option in list box. Select select = new Select(element); select.selectByVisibleText("QA"); 2) What is an iframe and how to handle it using Selenium WebDriver? An iframe is an…
Role of QA in DevOps If you are reading this article, chances are that you are part of the QA or DevOps team. DevOps is taking over the IT market effectively, so it has more or less influences on the expectation from Developers, Ops and testers. Nearly every organization when DevOps comes into the project,…
Selenium Java Interview Questions and Answers Part-21 1) What is the difference between WebDriver Listeners and TestNG Listeners? TestNG work on test related events while WebDriver Listeners work on automation related events. 2) TestNG- Write sample code to select browser depending on parameter given in testing.xml? We can define the browser parameter value in testing.xml:…
Selenium Java Interview Questions and Answers Part-20 1) How do you fail test cases in TestNg? We can use Assert.fail() method to the fail the test case 2) Sequence of execution of below annotations: @Test @BeforeGroups @AfterGroups @BeforeSuite @AfterSuite @BeforeMethod @AfterMethod @BeforeClass @AfterClass? Below is the sequence of annotations: @BeforeSuite @BeforeTest @BeforeClass @BeforeGroups @BeforeMethod @Test…
Scrum Master and [CSM] Certification With AGILE becoming standard practice at most organizations, the scrum masters are in great demand. Here is a look at the Scrum Master role and details. Scrum is one of the most popular framework with agile frameworks in use day to day and rightly it is used to develop complex…
Selenium Java Interview Questions and Answers Part-19 1) Why do you get NoSuchElementException ? NoSuchElementException is thrown when the element is not present in the page. 2) Write syntax for switching to default content after switching to any frame? driver.switchTo().defaultContent(); 3) Write syntax for actions class? Actions actions = new Actions(driver); actions.moveToElement(element).click().build().perform(); 4)…
Selenium Java Interview Questions and Answers Part-18 1) Explain the usage of different annotations available in TestNG? @BeforeSuite – Method will run before all tests run in the suite @AfterSuite – Method will run after all tests run in the suite @BeforeTest – Method will run before any test method within the class is run…
How to apply for ISTQB Certification? In this article, I am going to give detailed steps on how to apply ISTQB Certification Exam in India. Make sure you enroll for the ISTQB certification well in advance to the date when you plan to take the certification. The instructions given below are for taking the ISTQB…
70 plus Selenium WebDriver Commands (Full List) The below is the full list of Selenium WebDriver Commands provided along with the code and video: get() The purpose of this command is to open the provided Application URL in the Browser. The below is the code for using this command: public class Demo { public static…