我是 PhantomJS 和 Javascript 的新手,我正在编写一个测试加载时间的脚本,我希望它能够检测在测试时是否遇到错误 404/500,并在 console.log 中显示和消息. 代码如下:
var page = require('webpage').create(), t, address;
t = Date.now();
var testArray =
['someURL'];
function loadTest(testURL)
{
address = testURL;
page.open(address, function (status) {
if (status !== 'success') {
console.log('FAIL to load the address' + address);
return;
}
});
}
for(var i = 0; i < testArray.length; i++)
{
loadTest(testArray[i]);
t = Date.now() - t;
console.log('Testing ' + testArray[i]);
console.log('Loading time ' + t + ' msec\n');
}
phantom.exit();
非常感谢您的帮助。谢谢