Selenium IDE:获取表中的行数
如何使用Selenium IDE获取给定表的行数?
当我右键单击表格时,我只能声明/验证以下内容:
- 标题
- 值
- 文本
- 表
- 元素存在
目标是
//div[@id='reports']/div[n]` where `n` is the number of rows.
回答:
您要使用storeXpathCount
命令。这需要可存储在IDE内两个参数Target
和Value
字段,其中以下参数分别是:
- :要评估的xpath表达式
这是表格的示例id = reports
:
Command: storeXpathCountTarget: //div[@id='reports']/div[n]/table/tbody/tr
Value: myVarCount
其中,n
在div[n]
上面是你的div数。
提示:在Selenium IDE打开的情况下右键单击表即可快速获取路径!
以上是 Selenium IDE:获取表中的行数 的全部内容, 来源链接: utcz.com/qa/421125.html