我正在使用NightmareJS进行无头浏览。我的代码如下所示:
var Nightmare = require('nightmare');
var google = new Nightmare()
.goto('http://www.google.com')
.wait(3000)
.inject('js', 'jquery.min.js')
.screenshot('screenshot.png')
.evaluate(function(){
return $('#footer').html();
}, function(value){
console.log(value);
})
.run(function(err){
console.log('All done!');
});
我需要经常使用console.log
来调试DOM元素。但是,console.log
似乎无法在 .evaluate 块中运行。
如何将 .evaluate 中的内容记录到控制台?
答案 0 :(得分:1)
所以我之前能够使用Promises解决这个问题。这是更新后的代码:
var Nightmare = require('nightmare');
var Promise = require('es6-promise').Promise;
var nightmare = new Nightmare();
Promise.resolve(nightmare
.goto('http://www.google.com')
.wait(3000)
.inject('js', 'jquery.min.js')
.screenshot('screenshot.png')
.evaluate(function(){
return $('#footer').html();
}))
.then(function(value){
console.log(value);
console.log('All Done!');
return nightmare.end();
})
.then(function(result){
}, function(err){
console.error(err);
});
请记住npm install es6-promise
。除了我在这里使用的实现之外,您还可以使用其他Javascript Promises实现。
希望它有所帮助。
答案 1 :(得分:0)
console.log()
在页面上下文(evaluate()
内)中工作正常,但您必须听取它:
new Nightmare()
.on("consoleMessage", function(msg){
console.log("remote> " + msg);
})
.goto('http://www.google.com')
.evaluate(function(){
console.log($('#footer').html());
}, function(){})
...
请记住,您不能像在自己喜欢的浏览器的开发人员工具中那样将DOM节点完全输出到控制台。太过分了。您必须打印自己必须构建的DOM节点的表示。
您也可以以相同的方式使用PhantomJS provides的所有其他事件,但这仅适用于2.x之前的Nightmare版本,因为从版本2.x开始,Electron用作底层浏览器而不是PhantomJS。