Skip to content

Instantly share code, notes, and snippets.

@jleyba
Created August 18, 2014 16:12
Show Gist options
  • Save jleyba/4488a5655d6016633e30 to your computer and use it in GitHub Desktop.
Save jleyba/4488a5655d6016633e30 to your computer and use it in GitHub Desktop.
driver.get("https://www.betxchange.co.za/");
driver.wait(function() {
return driver.isElementPresent({id: "enterHyperLink"}).then(function(present) {
if (!present) return false;
return driver.findElement({id: "enterHyperLink"}).isDisplayed();
});
}, 5000).then(function() {
console.log('found it');
}, function(err) {
console.log(err.stack);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment