-
-
Save boutros/6730144 to your computer and use it in GitHub Desktop.
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
var casper = require("casper").create({ | |
viewportSize: {width: 1600, height: 1200}, | |
//verbose: true, | |
//logLevel: 'debug', | |
onError: function(self, m) { // Any "error" level message will be written | |
console.log('FATAL:' + m); // on the console output and PhantomJS will | |
self.exit(); // terminate | |
}, | |
}); | |
casper.on('remote.message', function (msg) { | |
casper.log(msg, 'error'); | |
}); | |
function pageerror(resource) { | |
casper.log('Cannot open ' + resource.url, 'error'); | |
}; | |
casper.on('load.failed', pageerror); | |
casper.on('http.status.404', pageerror); | |
casper.on('http.status.500', pageerror); | |
if (casper.cli.args.length < 2 || casper.cli.args.length > 2) { | |
console.error('Usage: screenshot.js URL FILE [OPTIONS]'); | |
casper.exit(); | |
} | |
else { | |
var address = casper.cli.args[0], | |
output = casper.cli.args[1]; | |
var method = casper.cli.options.method || 'get', | |
selector = casper.cli.options.selector || 'body', | |
data = casper.cli.options.data || '{}'; | |
data = JSON.parse(data); | |
casper.start(); | |
casper.open(address, { | |
method: method, | |
data: data | |
}); | |
casper.then(function() { | |
this.captureSelector(output, selector); | |
}); | |
casper.run(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment