如何使用Selenium IDE获取给定表的行数?
当我右键单击表格时,我只能声明/验证以下内容:
目标是
//div[@id='reports']/div[n]` where `n` is the number of rows.
您要使用storeXpathCount命令。这需要可存储在IDE内两个参数Target和Value字段,其中以下参数分别是:
storeXpathCount
Target
Value
这是表格的示例id = reports:
id = reports
Command: storeXpathCount Target: //div[@id='reports']/div[n]/table/tbody/tr Value: myVarCount
其中,n在div[n]上面是你的div数。
n
div[n]
提示:在Selenium IDE打开的情况下右键单击表即可快速获取路径!