Files
zulip/zephyr/tests/frontend/casperjs/samples/download.js
Tim Abbott eadb2ea6d3 Update casperjs to 1.0.2.
(imported from commit 9e34b51c4588dce6419ea86024b2e8c06346a685)
2013-03-05 15:10:32 -05:00

15 lines
331 B
JavaScript

/*jshint strict:false*/
/*global CasperError console phantom require*/
/**
* download the google logo image onto the local filesystem
*/
var casper = require("casper").create();
casper.start("http://www.google.fr/", function() {
this.download("http://www.google.fr/images/srpr/logo3w.png", "logo.png");
});
casper.run();