Skip to content

Instantly share code, notes, and snippets.

@rkusa
Created January 20, 2014 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rkusa/8524883 to your computer and use it in GitHub Desktop.
Save rkusa/8524883 to your computer and use it in GitHub Desktop.
function waitForXHR(selenium, callback) {
selenium.execute(function() {
return window.$.active === 0
}, function(err, res) {
if (res.value) callback()
else setTimeout(waitForXHR.bind(undefined, browser, callback), 500)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment