Selenium IDE:获取表中的行数

时间:2016-08-22 21:53:14

标签: selenium testing automated-tests selenium-ide

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

当我右键单击我的桌子时,我只能断言/验证以下内容:

  • 标题
  • 文本
  • 元素呈现

目标是

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

1 个答案:

答案 0 :(得分:0)

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

  • xpath :要评估的xpath表达式
  • VARIABLENAME

以下是表id = reports

的示例
Command: storeXpathCount
Target: //div[@id='reports']/div[n]/table/tbody/tr
Value: myVarCount

上面n中的div[n]是您的div号码。

提示:右键单击桌面并打开Selenium IDE以快速获取路径!