我对Phantomjs很新,并开始了解如何使用它。但是,所有半高级教程都没有涵盖我想使用Phantomjs的东西。
现在我的问题是如何检查网站上的Javascript是否处于活动状态以及它是否正常工作(即不在控制台中抛出错误)。
我希望有人能够指出我正确的方向或知道如何做到这一点。
答案 0 :(得分:1)
您可以使用webpage.evaluate方法与打开的页面进行互动:
var page = require('webpage').create();
page.open('http://m.bing.com', function(status) {
var title = page.evaluate(function(s) {
//what you do here is done in the context of the page
//this console.log will appear in the virtual page console
console.log("test")
//here they are just returning the page title (tag passed as argument)
return document.querySelector(s).innerText;
//you are not required to return anything
}, 'title');
console.log(title);
phantom.exit(); //closes phantom, free memory!
});
要查看虚拟页面控制台,您必须添加onConsoleMessage callback:
page.onConsoleMessage = function(msg, lineNum, sourceId) {
console.log('CONSOLE: ' + msg + ' (from line #' + lineNum + ' in "' + sourceId + '")');
};
编辑:默认情况下执行javascript。