Selenium IDE: [错误] 30000 毫秒后超时
Selenium IDE: [error] Timed out after 30000ms
我目前正在测试一个网站,我的第一个命令(即 open
)总是抛出 [error] Timed out after 30000ms
。
我用 target=100000
添加了 waitforPageToLoad
,但始终抛出相同的错误,导致 Test case failed
。
我应该正确使用哪个命令来防止这个错误?我可以在工具中的某处指定我的任何测试用例的最小页面加载蟾蜍时间是 60000ms
吗?
请指教。谢谢
该页面在这 30 秒内未提供 dom 就绪状态。您可以尝试使用 setTimeout 命令来增加该测试的超时时间。
setTimeout(timeout)
Arguments:
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.
我目前正在测试一个网站,我的第一个命令(即 open
)总是抛出 [error] Timed out after 30000ms
。
我用 target=100000
添加了 waitforPageToLoad
,但始终抛出相同的错误,导致 Test case failed
。
我应该正确使用哪个命令来防止这个错误?我可以在工具中的某处指定我的任何测试用例的最小页面加载蟾蜍时间是 60000ms
吗?
请指教。谢谢
该页面在这 30 秒内未提供 dom 就绪状态。您可以尝试使用 setTimeout 命令来增加该测试的超时时间。
setTimeout(timeout) Arguments:
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.