googlematch.js
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
* Takes provided terms passed as arguments and query google for the number of
* estimated results each have.
*
* Usage:
* $ casperjs samples/googlematch.js nicolas chuck borris
* nicolas: 69600000
* chuck: 49500000
* borris: 2370000
* winner is "nicolas" with 69600000 results
*/
var casper = new require('casper').create({
verbose: true
}), terms = casper.cli.args, scores = [], i = 0;
casper.fetchScore = function() {
return this.evaluate(function() {
var result = document.querySelector('#resultStats').innerText;
return parseInt(/Environ ([0-9\s]{1,}).*/.exec(result)[1].replace(/\s/g, ''), 10);
});
};
if (terms.length < 2) {
casper
.echo('Usage: casperjs googlematch.js term1, term2 [, term3]...')
.exit(1)
;
}
casper.echo('Let the match begin!');
casper.start("http://google.fr/");
casper.each(terms, function(casper, term, i) {
this.echo('Fecthing score for ' + term);
this.then(function() {
this.fill('form[action="/search"]', { q: term }, true);
});
this.then(function() {
var score = this.fetchScore();
scores.push({
term: term,
score: score
});
this.echo(term + ': ' + score);
});
});
casper.run(function() {
if (scores.length === 0) {
this.echo('No result found').exit();
}
var winner = scores[0];
scores.forEach(function(score) {
if (score.score > winner.score) {
winner = score.score;
}
});
this.echo('winner is "' + winner.term + '" with ' + winner.score + ' results');
this.exit();
});