当使用chromeless
库时,似乎无法在错误发生后打印HTML,我尝试了这个没有成功(只是再次显示最后一个错误);我需要一种方法来查看HTML的当前状态(当前状态或错误发生之前)
run().catch(function() {
// chrome is the defined instance
chromeless.html().then(function(h) {
// This nevers gets executed, throws last error again instead
console.log(h);
})
});