Advertisement
Guest User

Untitled

a guest
May 5th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var page = require('webpage').create();
  2. page.open('http://example.com', function(status) {
  3. console.log("Status: " + status);
  4. if(status === "success") {
  5. page.render('example.png');
  6. }
  7. phantom.exit();
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement