Nightmare.jsで取得したNodeListを反復しようとしています。開発ツールでの実行は期待どおりに実行されますが、ElectronIではNodeListを配列に正常に変換できません。Electron Nightmare.js NodeList to Array
nightmare
.goto('https://www.somePage.com')
.wait('#someID')
.evaluate(function() {
var links = document.querySelectorAll('div.someClass')
return links;
})
.end()
.then(function (result) {
console.log(result); // outputs the NodeList successfully.
var nodesArray = Array.prototype.slice.call(result);
console.log(nodesArray.length) // Always 0
})
.catch(function (error) {
console.error('Failed',
error);
})
私は、様々な他の方法でのNodeListを移植しようとしました。エレクトーンで働く縫い目はありません。ここでも、これはクロムツールで簡単に実現できます。