我尝试了以下

gotoIf "${oneoff}"=="Jeff Della Rosa"
gotoIf ${oneoff}=="Jeff Della Rosa"
gotoIf ${oneoff}=={"Jeff Della Rosa"} <-- not sure why, just trying anything.

--------这里是整个序列----------

最佳答案

另外,要测试“不相等”,请使用以下语法:
gotoIf '${variable}'!='the string operand' target_label
在变量和操作数周围都加上单引号很重要。

关于firefox - Selenium IDE gotoIF比较vchar字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14638094/

10-12 19:46