调试 PhantomJS 网页.打开失败

Posted

技术标签:

【中文标题】调试 PhantomJS 网页.打开失败【英文标题】:Debugging PhantomJS webpage.open failures 【发布时间】:2013-05-06 01:25:35 【问题描述】:

在 PhantomJS 中,webpage.open 接受一个带有设置为“成功”或“失败”的状态参数的回调。根据文档,如果没有发生网络错误,它将是“'成功',否则'失败'。”有没有办法查看导致失败的底层网络错误?

我尝试加载的网址在我的浏览器中运行良好,当我在收到“失败”消息后截取屏幕截图时,我看到了我在调用 pages.open 之前所在的页面(所以我不能忽略失败)。我正在使用 Phantom 进行测试,所以理想情况下,我想要一种强大的方法,可以在 pages.open 失败时轻松获得有用的错误消息(或者更好但永远不会失败!)

【问题讨论】:

为了未来:PhantomJS 自 2017 年以来就没有维护过,即使是这样,一些著名的网站也会在它下面出现行为不端。无头 Chrome 是要走的路。使用 Node.js 和 puppeteer,即使 API 也与 PhantomJS 提供的 API 相当接近。 【参考方案1】:

发现这篇文章解释了如何设置回调以了解失败的根本原因:http://newspaint.wordpress.com/2013/04/25/getting-to-the-bottom-of-why-a-phantomjs-page-load-fails/

根据该页面,您可以打印出如下错误:

page.onResourceError = function(resourceError) 
    console.error(resourceError.url + ': ' + resourceError.errorString);
;

该页面继续显示幻影的详细日志记录示例

var system = require('system');

page.onResourceRequested = function (request) 
    system.stderr.writeLine('= onResourceRequested()');
    system.stderr.writeLine('  request: ' + JSON.stringify(request, undefined, 4));
;

page.onResourceReceived = function(response) 
    system.stderr.writeLine('= onResourceReceived()' );
    system.stderr.writeLine('  id: ' + response.id + ', stage: "' + response.stage + '", response: ' + JSON.stringify(response));
;

page.onLoadStarted = function() 
    system.stderr.writeLine('= onLoadStarted()');
    var currentUrl = page.evaluate(function() 
        return window.location.href;
    );
    system.stderr.writeLine('  leaving url: ' + currentUrl);
;

page.onLoadFinished = function(status) 
    system.stderr.writeLine('= onLoadFinished()');
    system.stderr.writeLine('  status: ' + status);
;

page.onNavigationRequested = function(url, type, willNavigate, main) 
    system.stderr.writeLine('= onNavigationRequested');
    system.stderr.writeLine('  destination_url: ' + url);
    system.stderr.writeLine('  type (cause): ' + type);
    system.stderr.writeLine('  will navigate: ' + willNavigate);
    system.stderr.writeLine('  from page\'s main frame: ' + main);
;

page.onResourceError = function(resourceError) 
    system.stderr.writeLine('= onResourceError()');
    system.stderr.writeLine('  - unable to load url: "' + resourceError.url + '"');
    system.stderr.writeLine('  - error code: ' + resourceError.errorCode + ', description: ' + resourceError.errorString );
;

page.onError = function(msg, trace) 
    system.stderr.writeLine('= onError()');
    var msgStack = ['  ERROR: ' + msg];
    if (trace) 
        msgStack.push('  TRACE:');
        trace.forEach(function(t) 
            msgStack.push('    -> ' + t.file + ': ' + t.line + (t.function ? ' (in function "' + t.function + '")' : ''));
        );
    
    system.stderr.writeLine(msgStack.join('\n'));
;

【讨论】:

感谢您的回答,您可能需要概述链接中提到的信息,以防信息被删除、丢失或更改

以上是关于调试 PhantomJS 网页.打开失败的主要内容,如果未能解决你的问题,请参考以下文章

通过 Karma 运行时如何调试 PhantomJS

PhantomJSCasperJS安装配置图文详解

Selenium + PhantomJS打开的网页与常规浏览器不同

如何调试在 phantomjs 中运行的 ember-cli 测试

Java实现网页截屏功能(基于phantomJs)

如何用python+selenium+phantomjs获得一个网页的动态生成的html代码