Skip to content

Instantly share code, notes, and snippets.

@zoeabryant
Created August 29, 2017 11:00
Show Gist options
  • Save zoeabryant/edb91626ecc07865c49974dfee7f3615 to your computer and use it in GitHub Desktop.
Save zoeabryant/edb91626ecc07865c49974dfee7f3615 to your computer and use it in GitHub Desktop.
console.log('Let\'s go!');
var page = require('webpage').create();
page.open('http://google.com', function(status) {
console.log("Status: " + status);
if(status === "success") {
page.render(page.title + '.pdf');
}
phantom.exit();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment