• 技术文章 >常见问题 >Python常见问题

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

    yangyang2020-05-21 13:37:18原创3885

    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
    上一篇:python如何关闭文件? 下一篇:python中的加减乘除小知识

    相关文章推荐

    • python怎么判断是否为纯字母?• python中css如何定位?• Python中3>True的可以比较吗?• python如何做exe程序?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网