我收到此错误 TypeError:无法读取未定义的属性“ dock” 当我运行这段代码
const Nightmare = require('nightmare')
const nightmare = Nightmare({ show: true })
nightmare
.goto('https://duckduckgo.com')
.type('#search_form_input_homepage', 'github nightmare')
.click('#search_button_homepage')
.wait('#r1-0 a.result__a')
.evaluate(() => document.querySelector('#r1-0 a.result__a').href)
.end()
.then(console.log)
.catch(error => {
console.error('Search failed:', error)
})
我已经安装了噩梦和电子模块,但无法正常工作。然后,我将
添加到了噩梦选项中const nightmare = Nightmare({ show: true, dock: true })
现在我得到另一个TypeError,它是 TypeError:无法读取未定义的属性“ on”
我正在使用Windows 10和Visual Studio代码。 在不引发这些错误的情况下如何使噩梦工作有帮助吗?