in run_and_report_and_screenshot.js [18:27]
var download = function(url, dest, cb) {
var file = fs.createWriteStream(dest);
var request = https.get(url, function(response) {
response.pipe(file);
file.on('finish', function() {
file.close();
cb();
});
});
}