googlepagination.js
947 Bytes
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
var casper, currentPage, processPage;
casper = require('casper').create();
currentPage = 1;
if (casper.cli.args.length === 0) {
casper
.echo("usage: $ casperjs my search terms")
.exit(1)
;
}
processPage = function() {
var url;
this.echo("capturing page " + currentPage);
this.capture("google-results-p" + currentPage + ".png");
if (currentPage >= 5) {
return;
}
if (this.exists("#pnnext")) {
currentPage++;
this.echo("requesting next page: " + currentPage);
url = this.getCurrentUrl();
return this.thenClick("#pnnext").then(function() {
return this.waitFor(function() {
return url !== this.getCurrentUrl();
}, processPage);
});
} else {
return this.echo("that's all, folks.");
}
};
casper.start('http://google.fr/', function() {
return this.fill('form[action="/search"]', {
q: casper.cli.args.join(' ')
}, true);
});
casper.then(processPage);
casper.run();