Skip to content

Instantly share code, notes, and snippets.

@yankchina
Forked from shuuheyhey/capture.js
Last active August 29, 2015 14:16
Show Gist options
  • Save yankchina/2c9382bc027575f7912c to your computer and use it in GitHub Desktop.
Save yankchina/2c9382bc027575f7912c to your computer and use it in GitHub Desktop.
var screenshotUrl = 'http://example.com/'
var casper = require("casper").create({
viewportSize: {
width: 1280,
height: 1280
}
});
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('capture.png', {
top: 0,
left: 0,
width: 1280,
height: 1280
});
});
casper.run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment