Files
zulip/zephyr/tests/frontend/casperjs/samples/customevents.js
Keegan McAllister 921f7832c5 Import CasperJS 1.0.0-RC4-0-g8c798c7
(imported from commit b24184d9de034ecf4054dbc72cd6c28b49309182)
2012-11-13 10:59:02 -05:00

14 lines
318 B
JavaScript

var casper = require("casper").create();
// listening to a custom event
casper.on("google.loaded", function(title) {
this.echo("Google page title is " + title);
});
casper.start("http://google.com/", function() {
// emitting a custom event
this.emit("google.loaded", this.getTitle());
});
casper.run();