Python怎么查看ul下有多少li?

图片[1]-Python怎么查看ul下有多少li?-uusu优素-乐高,模型,3d打印,编程

python中可以使用selenium库来获取ul下有多少li。

selenium 是一套完整的web应用程序测试系统,包含了测试的录制(selenium IDE),编写及运行(Selenium Remote Control)和测试的并行处理(Selenium Grid)。

示例:

fromseleniumimportwebdriver
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()
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容