Selenium IDE:获取表中的行数

如何使用Selenium IDE获取给定表的行数?

当我右键单击表格时,我只能声明/验证以下内容:

  • 标题
  • 文本
  • 元素存在

目标是

//div[@id='reports']/div[n]` where `n` is the number of rows.

回答:

您要使用storeXpathCount命令。这需要可存储在IDE内两个参数TargetValue字段,其中以下参数分别是:

  • :要评估的xpath表达式

这是表格的示例id = reports

Command: storeXpathCount

Target: //div[@id='reports']/div[n]/table/tbody/tr

Value: myVarCount

其中,ndiv[n]上面是你的div数。

提示:在Selenium IDE打开的情况下右键单击表即可快速获取路径!

以上是 Selenium IDE:获取表中的行数 的全部内容, 来源链接: utcz.com/qa/421125.html

回到顶部