6

html源代码如下

<select id="ca_vdcs" class="pulldown small" name="vdc" style="display: none;">
<option>-- Select a vDC --</option>
<option>Platform-VDC-org</option>
</select>

我想选择“Platform-VDC-org”,但下面的代码不起作用。

select = browser.find_element_by_id('ca_vdcs')
select.find_element_by_xpath("//option[@value='Platform-VDC-org']").click()
4

1 回答 1

9

您应该尝试使用Select()该类。它使处理select elements变得容易得多。

select = Select(browser.find_element_by_id("ca_vdcs"))
select.select_by_visible_text("Platform-VDC-org")

您可以在此处查看 Python 中的 WebDriver API 绑定:

http://selenium-python.readthedocs.org/en/latest/api.html

Select()课程在第 7.12 节。用户界面支持

于 2013-10-29T10:32:33.317 回答