Here is a solution for ExtJS AJAX requests:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public waitForAjax(WebDriver driver, int timeOutInSeconds) { | |
(new WebDriverWait(driver, timeOutInSeconds)) | |
.until(new ExpectedCondition<Boolean>() { | |
public Boolean apply(WebDriver d) { | |
return (Boolean) ((JavascriptExecutor) d) | |
.executeScript("return !(ExtJSUtil.hasActiveAjaxCalls(Ext.Ajax.requests && !_.isEmpty(Ext.Ajax.requests));"); | |
} | |
}); | |
} |
2 comments:
Looks like you missing ")" in
"return !(ExtJSUtil.hasActiveAjaxCalls(Ext.Ajax.requests && !_.isEmpty(Ext.Ajax.requests));
Also I have one more question. Where I can find ExtJSUtil library
Thank you for reading my blog. I finally got around to put together the core code segments into a complete project. Public repo is on github now: https://github.com/huguogang/SJTXE
Post a Comment