Tapestry5.1+seleniumRc Ajax waitForAjax 请求

发布于 2024-08-17 14:43:39 字数 236 浏览 1 评论 0原文

有谁知道如何在挂毯区域上使用 seleniumRc (如 waitForPageToLoad)执行 waitForAjaxRequest ?我知道还有其他选择,例如等待某些元素出现等。

我正在寻找合适的 waitForAjaxRequest,并希望它也能在不同的浏览器上工作。

我尝试过 browserbot,但没有成功。

Does anyone know how to do waitForAjaxRequest using seleniumRc (like waitForPageToLoad) on tapestry zone? I know there are alternatives like wait for certain element to appear and etc.

I am seeking for a proper waitForAjaxRequest, and wish it work on different browsers as well.

I had tried browserbot, but no luck.

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

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

发布评论

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

评论(1

压抑⊿情绪 2024-08-24 14:43:39

您可以使用waitForCondition

selenium.waitForCondition("script", "timeout")

timeout以毫秒为单位(例如30000),并且script是必须返回true的JavaScript code> 当条件满足时,例如

"var value = selenium.getText('foo'); value.match(/bar/);"

(请参阅 OpenQA Wiki 了解更多信息。即使此链接到旧版本 Selenium 中使用的插件,waitForCondition 现在是 SeleniumRC 的一部分。)

You can use waitForCondition:

selenium.waitForCondition("script", "timeout")

while timeout is in milliseconds (e.g. 30000) and the script is JavaScript that has to return true when the condition is fulfilled, e.g.

"var value = selenium.getText('foo'); value.match(/bar/);"

(See OpenQA Wiki for more information. Even though this links to a plugin that was in use with an older version of Selenium, waitForCondition is now part of SeleniumRC.)

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