steptimeout.js
997 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
phantom.injectJs('casper.js');
if (phantom.args.length === 0) {
console.log('You must provide a timeout value')
phantom.exit(1);
} else {
var timeout = Number(phantom.args[0], 10);
if (timeout < 1) {
console.log('A timeout value must be a positive integer')
phantom.exit(1);
}
}
var casper = new phantom.Casper({
// verbose: true,
// logLevel: "debug",
stepTimeout: timeout,
onStepTimeout: function(self) {
self.echo(self.requestUrl + ' failed to load in less than ' + timeout + 'ms', 'ERROR');
}
});
var links = [
'http://google.com/',
'http://lemonde.fr/',
'http://liberation.fr/',
'http://cdiscount.fr/'
];
casper.start();
casper.each(links, function(self, link, i) {
self.test.comment('Adding ' + link + ' to test suite');
self.thenOpen(link, function(self) {
self.echo(self.requestUrl + ' loaded');
});
});
casper.run(function(self) {
self.test.renderResults(true);
self.exit();
});