我安装了噩梦 npm安装噩梦 - 在我的流星项目中保存。 然后我尝试在模板助手方法中运行恶梦示例代码:
Template.nighmare.events({
"click #doSomething"() {
let Nightmare = require('nightmare');
let nightmare = Nightmare({ show: true });
nightmare
.goto('https://duckduckgo.com')
.type('#search_form_input_homepage', 'github nightmare')
.click('#search_button_homepage')
.wait('#zero_click_wrapper .c-info__title a')
.evaluate(function () {
return document.querySelector('#zero_click_wrapper .c-info__title a').href;
})
.end()
.then(function (result) {
console.log(result);
})
.catch(function (error) {
console.error('Search failed:', error);
});
}
})
当从(我点击一个按钮)调用此代码时,我得到例外:
Uncaught TypeError: fs.existsSync is not a function
at meteorInstall.node_modules.electron.index.js (modules.js?hash=1ae810a…:109967)
at fileEvaluate (modules-runtime.js?hash=0969a31…:207)
at require (modules-runtime.js?hash=0969a31…:130)
at meteorInstall.node_modules.nightmare.lib.nightmare.js (modules.js?hash=1ae810a…:107767)
at fileEvaluate (modules-runtime.js?hash=0969a31…:207)
at require (modules-runtime.js?hash=0969a31…:130)
at Object.click #doSomething (app.js:4330)
at blaze.js?hash=813922c…:3774
at Function.Template._withTemplateInstanceFunc (blaze.js?hash=813922c…:3743)
at Blaze.View.<anonymous> (blaze.js?hash=813922c…:3773)
我不知道如何解决这个问题,任何提示或提示都会受到赞赏!
任何让流星+梦魇一起工作的人?
如果我将相同的代码放在test.js文件中并使用节点test.js在自己的项目中运行它就可以了。
答案 0 :(得分:0)
Nightmare应该在Node上运行,而不是直接在浏览器中运行。
Template.template_name.events
中的代码在客户端浏览器中执行,因此您的错误消息就会出现。
您可以尝试通过将梦魇代码移动到仅限服务器的方法来实现您要执行的操作,并在事件处理程序中调用该方法。