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