selenium怎么定位单元格行列

selenium怎么定位单元格行列,第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 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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/7873058.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-10
下一篇 2023-04-10

发表评论

登录后才能评论

评论列表(0条)

保存