Watir Automation testing: I'm trying to select an option from a select box , but since the options in the select box are set dynamically I am not able to do it correctly.
Html looks like :
<select id="abc">
<option>Select</option>
<option>First</option>
<option>Second</option>
<option>Third</option>
</select>
The command I'm trying to use is as follows :
$browser.select_list(:id, "abc").select("Second").
Since the options are dynamically set , the above command will fail if <option>Second</option> does not exist in the HTML .
error :
Watir::Exception::NoValueFoundException: No option with :text, :label or :value in this select element
What's the best way to implement this?Is there any way of selection using indexes/order?