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

56⟩ Tell us how to select a value in a dropdown?

WebDriver’s Select class is used to select value in the drop down.

selectByVisibleText:

Select selectByVisibleText = new Select (driver.findElement(By.id(“id_of_some_element”)));

selectByVisibleText.selectByVisibleText(“some_visible_text”);

 134 views