everyone!
I was hoping to save some time using CasperJs to open up webpages, take a screenshot in key sizes and then just flip through the screenshots to find any direct errors in our layouts (responsive design). We have 18 different mobile devices that our app has to work on, and being able to simply take a screenshot at those devices portrait and landscape modes will quickly reveal the worst design flaws.
The issue that I am having is the following: I have found that entering the Nokia 920 dimensions using viewport will result in a narrower window than what the device itself looks like. using a width/height of [340,520] looks closer to real life than the recommended [320,480]. I found the recommended values here: http://i-skool.co.uk/mobile-development/web-design-for-mobiles-and-tablets-viewport-sizes/
For iOS devices, I can simply set the width and height (minus controls sizes) and fairly accurately reproduce what I can see on iPhones and iPads.
I was hoping that someone using casperjs already has found a decent solution to this. I assume that I can't change phantomJs dpi, and I suspect that this is related somehow, but if there is a calculation formula I can apply to the width and height originals, I would be happy to learn it.