从Selenium Python中的“选择”以外的下拉菜单中选择

时间:2019-02-04 19:21:07

标签: python selenium

我想从下拉菜单中选择一个选项。选择不起作用。 我已使用下面的Python代码单击下拉按钮。

inputElement=driver.find_element_by_css_selector("#WIN_0_777031003 > a").click()

我使用下面的代码单击列表中的一个选项。但是它给出了错误

NoneType object has no attribute 'find_element_by_tag_name'

for option in inputElement.find_element_by_tag_name('option'):

if option.text == "New":

 option.click()

 break    

Drop down image

0 个答案:

没有答案