使用Selenium可以通過以下方法獲取元素的個(gè)數(shù):
find_elements
方法定位元素,并使用len
函數(shù)獲取元素的個(gè)數(shù)。find_elements
方法返回一個(gè)列表,列表中存儲(chǔ)著所有匹配到的元素。elements = driver.find_elements_by_xpath("//元素路徑")
count = len(elements)
print(count)
find_element
方法定位元素的父節(jié)點(diǎn),然后使用find_elements
方法在父節(jié)點(diǎn)下再次定位元素,并使用len
函數(shù)獲取元素的個(gè)數(shù)。parent_element = driver.find_element_by_xpath("//父節(jié)點(diǎn)路徑")
elements = parent_element.find_elements_by_xpath("//元素路徑")
count = len(elements)
print(count)
find_elements_by_xpath
方法直接定位元素,并使用len
函數(shù)獲取元素的個(gè)數(shù)。elements = driver.find_elements_by_xpath("//元素路徑")
count = len(elements)
print(count)
以上三種方法可以根據(jù)具體的需求選擇使用,其中find_elements_by_xpath
方法可以根據(jù)元素的XPath路徑進(jìn)行定位,還可以使用其他定位方式,如find_elements_by_css_selector
、find_elements_by_id
等。