selenium中li标签怎么定位

2025-01-20 12:00:18
推荐回答(1个)
回答1:

有两种方式:
常规的定位.比如xpath: //table//tr[2]/td[3] 或者 css=table tr:eq(1) td:eq(2)
直接通过tableCellAddress, 语法为: tableLocator.row.column比如: table id 为 foo: 则第2行第5列可以使用 foo.1.4 来定位.

下面是selenium关于table的相关文档
Generated from getTable(tableCellAddress)Arguments:tableCellAddress - a cell address, e.g. "foo.1.4"Returns:the text from the specified cellGets the text from a cell of a table. The cellAddress syntax tableLocator.row.column, where row and column start at 0.