© Courtney Zhan, Edited by Zhimin Zhan 2024
Z. Zhan (ed.)Selenium WebDriver Recipes in C#https://doi.org/10.1007/979-8-8688-0023-8_8

8. Select List

Courtney Zhan1  
(1)
Fitzgibbon, QLD, Australia
 
A select list is also known as a drop-down list or combobox (Figure 8-1).

A screenshot depicts a list of options to choose Honda Japan, Volvo Sweden, and Audi Germany.

Figure 8-1

A typical select list

HTML source:
<select name="car_make" id="car_make_select">
  <option value="">-- Select --</option>
  <option value="honda">Honda (Japan)</option>
  <option value="volvo">Volvo (Sweden)</option>
  <option value="audi">Audi (Germany)</option>
</select>

Import Selenium.Support ...

Get Selenium WebDriver Recipes in C#: Practical Testing Solutions for Selenium WebDriver now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.