python+selenium 获取table列表中所有数据条数

Posted 博小园

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium 获取table列表中所有数据条数相关的知识,希望对你有一定的参考价值。

# 定位到table,并获得table中所有得tr元素

menu_table = self.driver.find_element_by_xpath("//div[@class=‘datagrid-view1‘]/div[2]/div/table")

rows = menu_table.find_elements_by_tag_name(‘tr‘)

# python 得len()函数返回对象(字符、列表、元组)得长度或者元素得个数

before_add_numbers = len(rows)
print(before_add_numbers)

以上是关于python+selenium 获取table列表中所有数据条数的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Selenium Python 获取文本颜色

Selenium_Python测试对象操作之:table表格

Python+Selenium获取百度联系我们页面的email列表

如何使用selenium和python创建具有相同xpath的元素列表?

请教Python+selenium如何获取元素属性值问题

Python-Selenium table-scraper 只返回第一行