tikiwiki/packages/tiki-pkg-casperjs/jerome-breton/casperjs/samples/extends.js

41 lines
837 B
JavaScript
Raw Normal View History

2023-11-20 21:52:04 +01:00
/*eslint strict:0*/
/*global CasperError, console, phantom, require*/
var casper = require("casper").create({
loadImages: false,
logLevel: "debug",
verbose: true
});
var links = {
"http://edition.cnn.com/": 0,
"http://www.nytimes.com/": 0,
"http://www.bbc.co.uk/": 0,
"http://www.guardian.co.uk/": 0
};
var fantomas = Object.create(casper);
fantomas.countLinks = function() {
return this.evaluate(function() {
return __utils__.findAll("a[href]").length;
});
};
fantomas.renderJSON = function(what) {
this.echo(JSON.stringify(what, null, " "));
};
fantomas.start();
Object.keys(links).forEach(function(url) {
fantomas.thenOpen(url, function() {
links[url] = this.countLinks();
});
});
fantomas.run(function() {
this.renderJSON(links);
this.exit();
});