如何使用Selenium IDE获取给定表的行数?
当我右键单击我的桌子时,我只能断言/验证以下内容:
目标是
//div[@id='reports']/div[n]` where `n` is the number of rows.
答案 0 :(得分:0)
您想使用storeXpathCount
命令。这需要两个参数,这些参数可以存储在IDE Target
和Value
字段中,其中以下参数分别为:
以下是表id = reports
:
Command: storeXpathCount
Target: //div[@id='reports']/div[n]/table/tbody/tr
Value: myVarCount
上面n
中的div[n]
是您的div号码。
提示:右键单击桌面并打开Selenium IDE以快速获取路径!