Created
March 15, 2014 01:24
-
-
Save avh4/9560454 to your computer and use it in GitHub Desktop.
Stable testing with fluentlenium + angularjs
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 class IntegrationTestBase extends FluentTest { | |
private static final String ngAppElement = "html"; | |
private static final String markerClass = "angularReady"; | |
public void waitForAngular() { | |
executeScript( | |
"angular.element(document.querySelector('body')).removeClass('" + markerClass + "');" + | |
"angular.element(document.querySelector('" + ngAppElement + "'))" + | |
" .injector().get('$browser').notifyWhenNoOutstandingRequests("+ | |
" function() {" + | |
" angular.element(document.querySelector('body')).addClass('" + markerClass + "');" + | |
" })"); | |
wait().until("body." + markerClass).isPresent(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment