如何在 Python 的 Selenium 中选择页面中的单选按钮?
我们可以借助 click() 方法在 Selenium 中选择页面中的单选按钮。首先我们需使用 css、xpath、id、class 等任何类型的定位器来唯一地识别该复选框。
接下来,我们必须使用 findElement() 方法来定位该元素,最后执行点击操作。如果在页面中找不到匹配的元素,则会引发异常。
语法
driver.find_element_by_xpath("//input[@name='radio-button']")
示例
单选按钮选择的代码实现。
from selenium import webdriver #browser exposes an executable file #Through Selenium test we will invoke the executable file which will then #invoke actual browser driver = webdriver.Chrome(executable_path="C:\chromedriver.exe") # to maximize the browser window driver.maximize_window() #get method to launch the URL driver.get("https://tutorialspoint.com/selenium/selenium_automation_practice.htm") #to refresh the browser driver.refresh() # identifying the radio button with xpath then click driver.find_element_by_xpath("//input[@value='Female']").click() #to close the browser driver.close()
广告