First, need to inject the following Javascript 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 hasJSError = false; | |
var onJSError = function(conn, response, options, eOpts) { | |
hasJSFailure = true; | |
}; | |
window.onerror = onJSError; | |
//exposed object | |
var SJTXE = { | |
VERSION: '0.0', | |
hasJSError: function() {return hasJSError} | |
}; | |
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 hasJSError = (Boolean) ((JavascriptExecutor) driver).executeScript("return SJTXE.hasJSError();"); | |
//or check it in @After for each test case | |
@After | |
public void tearDown() { | |
assertThat("No runtime JavaScript error", | |
(Boolean) ((JavascriptExecutor) driver).executeScript("return SJTXE.hasJSError();"), | |
equalTo(false)); | |
} | |
No comments:
Post a Comment