Skip to content

Instantly share code, notes, and snippets.

@elgervb
Created May 30, 2016 13:56
Show Gist options
  • Save elgervb/74a4f62756254fde22f0d3fd77024c25 to your computer and use it in GitHub Desktop.
Save elgervb/74a4f62756254fde22f0d3fd77024c25 to your computer and use it in GitHub Desktop.
Taking screenshot
var phantomjs = require('phantomjs-prebuilt/bin/phantomjs');
var page = require('webpage').create();
page.open('http://github.com/', function() {
page.render('github.png');
phantom.exit();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment