如何用Selenium和Python选择单选按钮

时间:2015-05-12 06:32:36

标签: python python-2.7 selenium selenium-webdriver

我正在尝试选择单选按钮“Hitter”。有人可以帮忙吗?我尝试了很多不同的东西,但不断得到“消息:元素不可见”。

谢谢!

enter image description here

1 个答案:

答案 0 :(得分:7)

有多种方法可以找到广播input,这是使用find_element_by_id()的方式:

radio = driver.find_element_by_id("ContentPlaceHolder1_HitterRadioButton")
radio.click()

或者,如果您遇到此方法的问题,可以通过javascript模拟点击:

radio = driver.find_element_by_id("ContentPlaceHolder1_HitterRadioButton")
driver.execute_script("arguments[0].click();", radio)