Tapestry5.1+seleniumRc Ajax waitForAjax 请求
有谁知道如何在挂毯区域上使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
waitForCondition
:而
timeout
以毫秒为单位(例如30000),并且script
是必须返回true
的JavaScript code> 当条件满足时,例如(请参阅 OpenQA Wiki 了解更多信息。即使此链接到旧版本 Selenium 中使用的插件,
waitForCondition
现在是 SeleniumRC 的一部分。)You can use
waitForCondition
:while
timeout
is in milliseconds (e.g. 30000) and thescript
is JavaScript that has to returntrue
when the condition is fulfilled, e.g.(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.)