您现在的位置是:课程教程文章
Python怎么查看ul下有多少li?
2023-12-18 18:39课程教程文章 人已围观
python中可以使用selenium库来获取ul下有多少li。
selenium 是一套完整的web应用程序测试系统,包含了测试的录制(selenium IDE),编写及运行(Selenium Remote Control)和测试的并行处理(Selenium Grid)。
示例:
from selenium import webdriver chrome = webdriver.Chrome() chrome.get('https://www.bilibili.com') ul = chrome.find_element_by_xpath('//*[@id="primary_menu"]/ul') lis = ul.find_elements_by_xpath('li') len(lis) # 有多少个li lis[-1].text # 最后一个li lis[-1].click()
更多Python知识请关注Python自学网。
课程教程:Python怎么查看ul下有多少li?上一篇:python中的加减乘除小知识
下一篇:没有了