selenium中li标签怎么定位
发布网友
发布时间:2022-09-15 21:51
我来回答
共1个回答
热心网友
时间:2023-10-10 15:48
有两种方式:
常规的定位.比如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.