VS代码输出中的噩梦JS解冻TypeError

时间:2019-02-10 23:03:04

标签: windows visual-studio-code nightmare

我收到此错误 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代码。 在不引发这些错误的情况下如何使噩梦工作有帮助吗?

0 个答案:

没有答案