How is the then()
function executed? Is it different if I call it with referring to this
object?
I mean:
casper.then(function() {
casper.then(function(){
// stuff
this.then(function() {
// stuff2
});
casper.then();
});
});
casper.then(function() {
this.then(function(){
casper.then();
this.then();
// stuff
});
});
Is it the same (execution order?)? It should be, isn't it?