/* | |
* Casperjs - Obtener titulo sitio web | |
* chevere.pw | |
*/ | |
var casper = require('casper').create(); | |
casper.start('http://google.com/', function() { | |
this.echo(this.getTitle()); | |
}); | |
casper.thenOpen('http://chevere.pw', function() { | |
this.echo(this.getTitle()); | |
}); | |
casper.run(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment