Selenium IDE gotoIF比较vchar字符串

时间:2013-02-01 01:09:24

标签: firefox selenium selenium-ide

我试过以下

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

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

2 个答案:

答案 0 :(得分:5)

此外,要测试“NOT EQUAL”,请使用以下语法:

gotoIf '${variable}'!='the string operand' target_label

在变量和操作数周围使用单引号非常重要。

答案 1 :(得分:4)

格式正确。

gotoIf '${oneoff}'=='Jeff Della Rosa'

单引号...... Grr!