如何使用 Python 和 Selenium 统计页面中表格的总数?
我们可以借助 find_elements 方法来统计 Selenium 页面中表格的总数。在处理任何表格时,我们总是会在 HTML 代码中找到标签名,其值应为 table (<table>)。
此特性仅适用于该页面上的表格,而不适用于其他类型的 UI 元素,如编辑框、单选按钮等。
要检索所有标签名为 table 的元素,我们将使用 find_elements_by_tag_name() 方法。此方法返回一个 Web 元素列表,其类型是在方法参数中指定的标签名。如果没有匹配的元素,则返回一个空列表。
获取表格列表后,为了计算其总数,我们需要获取该列表的大小。列表的大小可以通过列表数据结构的 len() 方法获得。
最后,此长度将打印到控制台。
语法
driver.find_elements_by_tag_name("table")
示例
统计表格数量的代码实现。
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/index.htm") #to refresh the browser driver.refresh() #to get the list of tables present on the web page t = driver.find_elements_by_tag_name('table') #print the count with the len method on console print(len(t)) #to close the browser driver.quit()
广告