gpt4 book ai didi

javascript - 如何在链接 promise 后结束 NightmareJs 实例?

转载 作者:行者123 更新时间:2023-12-02 13:53:41 24 4
gpt4 key购买 nike

我在文档中看到的示例在使用 .then() 之前调用 .end() 。比如

nightmare
.goto('http://yahoo.com')
.type('form[action*="/search"] [name=p]', 'github nightmare')
.click('form[action*="/search"] [type=submit]')
.wait('#main')
.evaluate(function () {
return document.querySelector('#main .searchCenterMiddle li a').href
})
.end()
.then(function (result) {
console.log(result)
})
.catch(function (error) {
console.error('Search failed:', error);
});

但是,我正在尝试这样做......

...
.then(function () {...})
.end()

但我收到一条错误,指出 .end 不存在。

我还尝试了下面的方法,它不会引发错误,但会导致 Nightmare 挂起。

...
.then(function () {...})
.then(function () {
nightmare.end()
});

最佳答案

根据 Github issue discussion

nightmare.end() 必须从链接的 .then() 返回,而不仅仅是调用。

...
.then(function () {...})
.then(function () {
return nightmare.end();
})

关于javascript - 如何在链接 promise 后结束 NightmareJs 实例?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40832949/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com