mirror of
https://github.com/zulip/zulip.git
synced 2025-11-09 16:37:23 +00:00
12 lines
258 B
JavaScript
12 lines
258 B
JavaScript
/*
|
|
* 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();
|