如何使用Python和Selenium统计页面中单选按钮的总数?
我们可以使用find_elements方法来统计Selenium页面中单选按钮的总数。在处理任何单选按钮时,我们总会在HTML代码中找到一个type属性,其值应为radio。
此特性仅适用于该页面上的单选按钮,而不适用于其他类型的UI元素,例如编辑框、链接等。
要检索所有具有type='radio'属性的元素,我们将使用find_elements_by_xpath()方法。此方法返回一个包含xpath类型为方法参数中指定的web元素的列表。如果没有匹配的元素,则返回一个空列表。
获取单选按钮列表后,为了统计其总数,我们需要获取该列表的大小。列表的大小可以通过列表数据结构的len()方法获得。
最后,此长度将打印到控制台。
语法
driver.find_elements_by_xpath("//input[@type='radio']")
示例
统计单选按钮的代码实现。
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 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()
广告