有一个网页元素:
<select id="sel" onchange="refresh('sel')">
<option value="1"> A</option>
<option value="2"> B</option>
</select>
因为它有onchange
,我无法选择该选项。我的代码是这样的:
new Select(driver.findElement(By.id("sel"))).selectByValue("1");
但它不能工作。有可能让它工作吗?