First, need to inject the following JS code to the page under testing:
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
//Client side utilities for Selenium tests of ExtJS web applications | |
//requires ExtJS and Underscore libraries | |
//SJTXE - Selenium JavaScript Testing eXtension for ExtJS | |
(function(root, Ext) { | |
var root = root || window; | |
var me = root; | |
var Ext = Ext; | |
//private vars | |
var hasAjaxFailure = false; | |
var onAjaxError = function(conn, response, options, eOpts) { | |
hasAjaxFailure = true; | |
}; | |
Ext.onReady(function() { | |
Ext.Ajax.on({ | |
requestexception: onAjaxError | |
}); | |
}); | |
//exposed object | |
var SJTXE = { | |
VERSION: '0.0', | |
hasAjaxFailure: function() {return hasAjaxFailure} | |
}; | |
root.SJTXE = SJTXE; | |
return SJTXE; | |
})(this, Ext); |
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
//make sure it's run after every page load | |
public static void injectSJTXE(WebDriver driver) throws IOException { | |
URL url; | |
String js; | |
url = Resources.getResource(ExtJSUtil.class, "SJTXE.js"); | |
js = Resources.toString(url, Charsets.UTF_8); | |
((JavascriptExecutor) driver).executeScript(js); | |
} | |
//code to check if there are ExtJS Ajax error | |
Boolean hasAjaxFailure = (Boolean) ((JavascriptExecutor) driver).executeScript("return SJTXE.hasAjaxFailure();"); |
No comments:
Post a Comment