I\'m not able to select options in a drop down list. I think I need to have .Select or SelectElement, but there is no such option.
.Select
SelectElement
Sample code:
Depending what version of Selenium WebDriver you are using you can use the SelectElement class, which will be included in OpenQA.Selenium.Support.UI. For example:
OpenQA.Selenium.Support.UI
SelectElement selector = new SelectElement(element); selector.SelectByIndex(1);
Where the element is your drop down box.