Posts Tagged ‘automation’

Batch Screenshots with webkit2png

Monday, January 23rd, 2012 by Jesper Rønn-Jensen

For projects I sometimes have lots of screenshots which I have to repeat whenever I change subtle things in the CSS or HTML. I ended up creating this little handy script based on webkit2png (download source) #!/usr/bin/env sh HOST=”http://localhost:8080/myproject/viewer” /usr/bin/python webkit2png -F -o “01dashboard” $HOST/dashboard /usr/bin/python webkit2png -F -o “02showdetail” $HOST/detail /usr/bin/python webkit2png -F -o […]