Selenium IDE:[错误] 30000ms后超时

时间:2015-11-10 03:19:39

标签: testing selenium-ide

我目前正在测试一个网站,我的第一个命令(即open)总是被[error] Timed out after 30000ms抛出。

我在waitforPageToLoad添加了target=100000,但始终抛出相同的错误,导致Test case failed

我应该正确使用哪个命令来防止此错误?我是否可以在工具中的某个位置指定我的任何测试用例的最小页面加载时间为60000ms

请指教。谢谢

1 个答案:

答案 0 :(得分:2)

页面在30秒内没有给出dom ready状态。您可以尝试使用setTimeout命令来增加该测试的超时。

  

的setTimeout(超时)       参数:

    timeout - a timeout in milliseconds, after which the action will return with an error

Specifies the amount of time that Selenium will wait for actions to complete.

Actions that require waiting include "open" and the "waitFor*" actions.
The default timeout is 30 seconds.