hmtl代码
<select selected="selected" class="ordername" style="width:120px" name="User[user_type]" id="User_user_type">
<option value="0">Please Choose</option><option value="1" selected="selected">one</option>
<option value="2">Advertiser</option>
<option value="4">Agent</option>
</select>
方法一:
Select userSelect=new Select(driver.findElement(By.id("User_user_type")));
userSelect.selectByVisibleText("电子 数码");
方法二:
WebElement adrOption=driver.findElement(By.cssSelector("#User_user_type option[value='2']"));
adrOption.click();
注意:
不在上述方法前加driver.findElement(By.id("User_user_type")).click();
否则只展开下拉列表,鼠标在”电子 数码“上,但是并不会点击此项。