How to select an option from drop down options.
Here is the code of drop down in html.
<select name="birthDate[month]"
class="monthSelect">
<option value="">Month</option>
<option value="1">january</option>
<option value="2">feburary</option>
For other item selection I am using ID to find the elements. In this case there is no ID associated to the options.
How to select the options from this drop down based on text or sequence number or by value.