在 chrome 的 Selenium IDE 中使用 VerifyElementPresent 的输出状态

Using output status of VerifyElementPresent in Selenium IDE on chrom

我在 chrome 上使用 Seleium IDE。我想使用 "VerifyElementPresent" 命令的输出来制作一个简单的代码。如果输出为真,则执行代码 1,否则执行代码 2。

我找不到将此命令的输出存储在变量中的方法,因此我可以进一步使用它。

谢谢

由于这个原因,文档中没有关于存储 'verify element present' command. But you can use 'store xpath count' 结果的信息。

store xpath count | xpath=some_xpath | n
if | ${n} > 0 |
code1...
else | |
code2...
end | |