Interview Questions

Selenium WebDriver - How to select value in a dropdown?

Selenium WebDriver Interview question and Answers


(Continued from previous question...)

Selenium WebDriver - How to select value in a dropdown?

Value in the drop down can be selected using WebDriver’s Select class.
Syntax:
selectByValue:
Select selectByValue = new Select(driver.findElement(By.id(“SelectID_One”)));
selectByValue.selectByValue(“greenvalue”);

selectByVisibleText:
Select selectByVisibleText = new Select
(driver.findElement(By.id(“SelectID_Two”)));
selectByVisibleText.selectByVisibleText(“Lime”);

selectByIndex:
Select selectByIndex = new Select(driver.findElement(By.id(“SelectID_Three”)));
selectByIndex.selectByIndex(2);

(Continued on next question...)

Other Interview Questions