Firefox 等待超时 [WatiN]

发布于 2024-12-28 03:50:30 字数 67 浏览 0 评论 0原文

有没有办法使用 WatiN 更改 Firefox 的超时?

它抛出此错误:“等待主文档变得可用时超时”。

Is there any way of changing the timeout for Firefox using WatiN?

It throws this error: "Timeout while waiting for main document becoming available".

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

停滞 2025-01-04 03:50:30

如果页面加载时间较长,那么您可以

Settings.WaitForCompleteTimeOut = 480;

在触发超时异常之前增加等待时间。

或者,如果每次运行页面加载的时间不同,因此在这种情况下 WaitForCompleteTimeOut 时间无法固定,您可以在页面上搜索文本并等待该文本出现,以这种方式,

ie.WaitUntilContainsText("Any text on the page");

If the page is taking longer time to load then you can use

Settings.WaitForCompleteTimeOut = 480;

to increase the wait time before it fires the time out exception.

Or, if the page gets loaded in a variable amount of time for each run, so WaitForCompleteTimeOut time can't be fixed in that scenario, you can search for a text on the page and wait till that text appears, in this manner,

ie.WaitUntilContainsText("Any text on the page");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文