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
暂无评论内容