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:
This works perfectly ...
SelectElement selector = new SelectElement(element); selector.SelectByIndex(1);
Where the element is your drop down box.