Created
November 12, 2012 17:07
-
-
Save nhoizey/4060568 to your computer and use it in GitHub Desktop.
Take screenshots at different viewport sizes using CasperJS
This file contains 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
/* | |
* Takes provided URL passed as argument and make screenshots of this page with several viewport sizes. | |
* These viewport sizes are arbitrary, taken from iPhone & iPad specs, modify the array as needed | |
* | |
* Usage: | |
* $ casperjs screenshots.js http://example.com | |
*/ | |
var casper = require("casper").create(); | |
var screenshotUrl = 'http://google.com/', | |
screenshotNow = new Date(), | |
screenshotDateTime = screenshotNow.getFullYear() + pad(screenshotNow.getMonth() + 1) + pad(screenshotNow.getDate()) + '-' + pad(screenshotNow.getHours()) + pad(screenshotNow.getMinutes()) + pad(screenshotNow.getSeconds()), | |
viewports = [ | |
{ | |
'name': 'smartphone-portrait', | |
'viewport': {width: 320, height: 480} | |
}, | |
{ | |
'name': 'smartphone-landscape', | |
'viewport': {width: 480, height: 320} | |
}, | |
{ | |
'name': 'tablet-portrait', | |
'viewport': {width: 768, height: 1024} | |
}, | |
{ | |
'name': 'tablet-landscape', | |
'viewport': {width: 1024, height: 768} | |
}, | |
{ | |
'name': 'desktop-standard', | |
'viewport': {width: 1280, height: 1024} | |
} | |
]; | |
if (casper.cli.args.length < 1) { | |
casper | |
.echo("Usage: $ casperjs screenshots.js http://example.com") | |
.exit(1) | |
; | |
} else { | |
screenshotUrl = casper.cli.args[0]; | |
} | |
casper.start(screenshotUrl, function() { | |
this.echo('Current location is ' + this.getCurrentUrl(), 'info'); | |
}); | |
casper.each(viewports, function(casper, viewport) { | |
this.then(function() { | |
this.viewport(viewport.viewport.width, viewport.viewport.height); | |
}); | |
this.thenOpen(screenshotUrl, function() { | |
this.wait(5000); | |
}); | |
this.then(function(){ | |
this.echo('Screenshot for ' + viewport.name + ' (' + viewport.viewport.width + 'x' + viewport.viewport.height + ')', 'info'); | |
this.capture('screenshots/' + screenshotDateTime + '/' + viewport.name + '-' + viewport.viewport.width + 'x' + viewport.viewport.height + '.png', { | |
top: 0, | |
left: 0, | |
width: viewport.viewport.width, | |
height: viewport.viewport.height | |
}); | |
}); | |
}); | |
casper.run(); | |
function pad(number) { | |
var r = String(number); | |
if ( r.length === 1 ) { | |
r = '0' + r; | |
} | |
return r; | |
} |
@dpashkevich, probably to make sure external dependencies have loaded
Just a note if you are seeing a blank screen come out, it might be because of SSL protocol. CasperJS and PhantomJS both allow you to specify --ssl-protocol=any
to cirvumvent that. See here
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very very nice.