How can I take screenshot of website with parameters?
I have url which contains some parameters and it fails to take screenshot.
Problem seems to be that ? in url is replaced by %3F
ie
var webshot = require('webshot');
webshot('google.com?param1=foo¶m2=foo2', 'google.png', function(err) {
// screenshot now saved to google.png
});
How can I take screenshot of website with parameters? I have url which contains some parameters and it fails to take screenshot. Problem seems to be that ? in url is replaced by %3F
ie var webshot = require('webshot');
webshot('google.com?param1=foo¶m2=foo2', 'google.png', function(err) { // screenshot now saved to google.png });