Created
September 26, 2014 18:24
-
-
Save denov/fb9521be908297d852d5 to your computer and use it in GitHub Desktop.
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
.then(function (element) { | |
console.info("=> found somethining.."); | |
element.click(); // this wrong since we are not returning and the chain goes goes on | |
}).end() | |
// better? | |
.click().then(function(){console.info("=> found somethining..")}) | |
.end() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment