Created
October 26, 2015 16:22
-
-
Save founddrama/60aa03265edb84187cc0 to your computer and use it in GitHub Desktop.
Because it was pretty and I wanted a copy of it. ¯\_(ツ)_/¯
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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