Skip to content

Instantly share code, notes, and snippets.

@pparadis
Created November 4, 2014 01:13
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 pparadis/a614cb178db0a436a911 to your computer and use it in GitHub Desktop.
Save pparadis/a614cb178db0a436a911 to your computer and use it in GitHub Desktop.
PhantomJS Titre
var page = require('webpage').create();
page.open(url, function(status) {
var title = page.evaluate(function() {
return document.title;
});
console.log('Page title is ' + title);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment