Last active
November 6, 2018 06:19
-
-
Save gaspanik/5609135 to your computer and use it in GitHub Desktop.
Take screenshot at single viewport size using CasperJS
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 screenshotUrl = 'http://example.com/' | |
var casper = require("casper").create({ | |
viewportSize: { | |
width: 1024, | |
height: 768 | |
} | |
}); | |
if (casper.cli.args.length < 1) { | |
casper | |
.echo("Usage: $ casperjs capture.js http://example.com") | |
.exit(1) | |
; | |
} else { | |
screenshotUrl = casper.cli.args[0]; | |
} | |
casper.start(screenshotUrl, function() { | |
this.capture('example.png', { | |
top: 0, | |
left: 0, | |
width: 1024, | |
height: 768 | |
}); | |
}); | |
casper.run(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment