如何使用 Selenium 获取页面上单选按钮的总数?
我们可以使用 Selenium webdriver 的 find_elements 方法获取页面上单选按钮的总数。在处理任何单选按钮时,我们总会在 html 代码中找到一个 type 属性,并且其值应为 radio。
此特性仅适用于该特定页面上的单选按钮,而不适用于其他类型的 UI 元素,例如编辑框、链接等。
要检索所有具有属性 type = 'radio' 的元素,我们将使用 find_elements_by_xpath() 方法。此方法返回一个包含 xpath 类型 Web 元素的列表,该 xpath 在方法参数中指定。如果不存在匹配的元素,则将返回一个空列表。
获取单选按钮列表后,为了计算其总数,我们需要获取该列表的大小。列表的大小可以通过列表数据结构的 len() 方法获得。
最后,此长度将打印到控制台。
语法
driver.find_elements_by_xpath("//input[@type='radio']")
示例
计算单选按钮的代码实现。
from selenium import webdriver 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 buttons with type attribute in a list chk =driver.find_elements_by_xpath("//input[@type='radio']") # len method is used to get the size of that list print(len(chk)) #to close the browser driver.close()
广告