Search⌘ K
AI Features

Selecting a Single Option From a Select List

Explore methods to select a single option from a select list in Selenium WebDriver while using Node.js. Understand how to select options by visible text, by value, and by iterating through all options. This lesson helps you handle select lists effectively in automated browser testing.

Select an option by text

Typically on a web page in a browser, we see the label of a select list. With the help of this label, we can select an option from a select list in Selenium as:

driver.findElement(By.name("car_make")).sendKeys("Volvo (Sweden)");  

// or
...