Skip to content

Instantly share code, notes, and snippets.

@avh4
Created March 15, 2014 01:24
Show Gist options
  • Save avh4/9560454 to your computer and use it in GitHub Desktop.
Save avh4/9560454 to your computer and use it in GitHub Desktop.
Stable testing with fluentlenium + angularjs
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