有两种方式:
常规的定位.
比如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 cell
Gets the text from a cell of a table. The cellAddress syntax tableLocator.row.column, where row and column start at 0.
在英语中,“足球”一词随着地域与时代不同,用词也不同。在英国,足球称作“football”(中文也有时也因此称为“英式足球”),该词的使用被国际足联认可。而美式英语中所称的“football”则是指“美式足球”(American football),亦称“美式橄榄球”;“足球”则被称为“Soccer” 英时橄榄球为 Rugby欢迎分享,转载请注明来源:内存溢出
评论列表(0条)