アプリのWebショットを作成するスクリプトを設定しました。それは完璧に動作し、壊れたURLを持つ画像に遭遇するまですべてがうまくいきます:
"<img src='http://testserver.our.intranet/fetch/image/373e8fd2339696e2feeb680b765d626e' />"
以下を使用して、6秒後にスクリプトを壊すことができました。
しかし、ネットワーク要求を無視して(AKA
からDOM
から画像を取り出し)、画像なしで(または挿入された画像に画像がない場合)サムを作成することは可能ですか?
var page = require('webpage').create(),
system = require('system'),
address, output, size;
if (system.args.length < 3 || system.args.length > 5) {
phantom.exit(1);
} else {
address = system.args[1];
output = system.args[2];
page.viewportSize = { width: 640, height: 640 };
page.zoomFactor = 0.75;
page.clipRect = { top: 10, left: 0, width: 640, height: 490 };
try{
page.open(address, function (status) {
if (status !== 'success') {
console.log('Unable to load the address!');
phantom.exit();
} else {
window.setTimeout(function () {
page.render(output);
phantom.exit();
}, 200);
}
});
} finally{
setTimeout(function() {
console.log("Max execution time " + Math.round(6000) + " seconds exceeded");
phantom.exit(1);
}, 6000);
}
}
PhantomJS 1.9には新しい設定resourceTimeout
が導入され、リクエストがキャンセルされるまでにかかる時間を制御します。それに加えて、リクエストがタイムアウトになった場合にトリガーされるonResourceTimeout
イベントがあります。
上記のすべてを示すコードスニペットを次に示します。
var page = require('webpage').create();
page.settings.resourceTimeout = 5000; // 5 seconds
page.onResourceTimeout = function(e) {
console.log(e.errorCode); // it'll probably be 408
console.log(e.errorString); // it'll probably be 'Network timeout on resource'
console.log(e.url); // the url whose request timed out
phantom.exit(1);
};
page.open('http://...', function (status) {
...
}
残念ながら、これらのオプションは今のところ不十分に文書化されています。それらを見つけるために、GitHub discussions と PhantomJSソースコード を調べなければなりませんでした。