我没有运气从<select>
使用硒中选择一个选项。我已经引用了https://sqa.stackexchange.com/questions/1355/what-is-the-correct-way-to-select-an-option-using-seleniums-python-webdriver
html代码如下:
<select name="Dropdownlistrequests" onchange="javascript:setTimeout('__doPostBack(\'Dropdownlistrequests\',\'\')', 0)" id="Dropdownlistrequests" style="height:51px;width:174px;Z-INDEX: 104; LEFT: 280px; POSITION: absolute; TOP: 72px">
<option selected="selected" value="1">Previous Days</option>
<option value="2">Previous Month</option>
<option value="3">Last 12 Hours</option>
<option value="4">Demand Poll</option>
<option value="6">Custom</option>
</select>
我努力了
requests = driver.find_element_by_id("Dropdownlistrequests")
requests.click()
for option in requests.find_elements_by_tag_name('option'):
if option.text == "Custom":
option.click()
break
和
requests = Select(driver.find_element_by_id("Dropdownlistrequests"))
requests.select_by_value("6")
和
b.find_element_by_xpath("//select[@id='Dropdownlistrequests']/option[text()='Custom']").click()
浏览器没有选择适当的选项,而是什么都不做,继续下一段代码。它可以与onchange触发的javascript有关吗?
提供更多上下文:我正在运行 Windows 7 企业版并使用 selenium 和木偶和 Firefox 开发人员版 49.0a2
更新:这似乎只在 python 中使用 Marionette 时发生。我在有和没有 Marionette 的情况下在 Java 中尝试了相同的代码,它都有效