Skip to content

Instantly share code, notes, and snippets.

@CAMIZOCA
Created March 26, 2015 22:29
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 CAMIZOCA/5c8fdc6234288a57c20e to your computer and use it in GitHub Desktop.
Save CAMIZOCA/5c8fdc6234288a57c20e to your computer and use it in GitHub Desktop.
/*
* 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