我想从下拉菜单中选择一个选项。选择不起作用。 我已使用下面的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