Skip to content

Instantly share code, notes, and snippets.

@founddrama
Created October 26, 2015 16:22
Show Gist options
  • Save founddrama/60aa03265edb84187cc0 to your computer and use it in GitHub Desktop.
Save founddrama/60aa03265edb84187cc0 to your computer and use it in GitHub Desktop.
Because it was pretty and I wanted a copy of it. ¯\_(ツ)_/¯
var casper = require('casper').create();
casper.options.viewportSize = { width: 1280, height: 1024 };
casper
.start('http://www.craftbeer.com/beer-styles', function() {
this.evaluate(function() {
$('#social-links').remove();
});
this.captureSelector('craft-beer-styles.png', '#main');
this.exit();
})
.run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment