避免在selenium IDE中出现超时错误

时间:2012-01-18 11:59:09

标签: testing selenium automation timeout selenium-ide

我正在使用selenium IDE,我必须生成一个脚本,如果发生超时错误,它会将我重定向到gmail,并且我将向客户支持发送电子邮件。如果没有时间错误,则执行后续步骤。

是否可以生成此类脚本? 我们可以在selenium IDE中设置计时器吗?

或者是否有任何解决方案可以避免超时错误?

1 个答案:

答案 0 :(得分:0)

我不知道selenium IDE,但在这种情况下的一般解决方案是(使用Python语法):

try:
    # code that may generate timeout error
except TimeoutError:
    # redirect to gmail
else:
    # code that should be executed if there is no timeout error