Skip to content

Instantly share code, notes, and snippets.

@mirez
Created September 6, 2013 22:01
Show Gist options
  • Save mirez/6470535 to your computer and use it in GitHub Desktop.
Save mirez/6470535 to your computer and use it in GitHub Desktop.
var page = require('webpage').create();
page.viewportSize = { width : 1024, height: 768 };
page.open('http://breakingnews.com', function () {
setTimeout(function(){
page.render('f:\\screenshots\\breakingnews.com.png');
phantom.exit();
}, 1500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment