Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试对 Web 应用程序上显示的表格进行计数。我想找出表格中有多少行,然后我想检查屏幕上显示的数字。
我不完全确定如何做到这一点,我在网上进行了研究,但找不到任何帮助。请问有人可以提出一个想法吗?
如果您使用的是常规 HTML 表格,则可以使用 Roger Studner 在他的评论中提供的方法;例如:
const table = await Selector().find('.my-table); const rows = table.find('tbody > tr'); const count = await rows.count;