HTML Code is
<select class="form_input_select bx-def-font" name="Sex[0]">
<option value="Male">Man</option>
<option value="Female">Woman</option>
<option value="Other" selected="selected">_Other</option>
</select>
I am using below Selenium Java code:
Select select = new Select(driver.findElement(By.name("Sex[0]")));
select.selectByIndex(0);
Thread.sleep(2000);
Cursor move on Man , But Man is not Show , Show only _Others
Please help me for solve my issues I have applied more and more syntax but but I am not success to show Man...