gpt4 book ai didi

javascript - 点击事件的 Nightmare 循环

转载 作者:行者123 更新时间:2023-11-30 15:28:31 25 4
gpt4 key购买 nike

我正在学习梦魇。尝试访问一个网站,登录,然后迭代地点击一个按钮,使更多的数据出现,直到该按钮不再存在。我做了一个虚拟账户来说明。

我第一次成功登录并单击按钮,但是当我尝试再次单击它时,它记录了一个错误,指出它找不到“.more-checkins”元素。

最终,我希望此代码处于循环中,而不是告诉代码单击...等待...然后再次单击。帮助设计也将不胜感激。

const Nightmare = require('nightmare')
const untappdURL = 'https://untappd.com/user/beerFan2017'


Nightmare({
show: true,
openDevTools: true,
waitTimeout: 90000000 // increase the default timeout to test things
})
.goto(untappdURL)
.click('.more_checkins')
.type('#username', 'beerFan2017')
.type('#password', 'Testing2017')
.click('input[type="submit"]')
.wait('.stats')
.click('.more_checkins')
.evaluate(function() {
return console.log('Begin waiting');
})
.wait(5000)
.evaluate(function() {
return console.log('Waiting end');
})
.click('more_checkins')
.then(result => console.log(result))
.catch(error => console.error(error))

最佳答案

两部分答案:一,去读asynchronous operations and loops关于 Nightmare 示例。这将帮助您了解有关使用 promises 进行迭代的一些背景知识。

第二,Nightmare 仓库中也有类似的问题 - #625 - 当你到达滚动条的末尾时,这与继续加载更多有关。一个示例实现(非常天真,小心):

var Nightmare = require('nightmare');
var vo = require('vo');
var nightmare = Nightmare({
show: true
});

var run = function * () {
yield nightmare.goto('http://someInfiniteScrollPage.tld');

var previousHeight, currentHeight=0;
while(previousHeight !== currentHeight) {
previousHeight = currentHeight;
var currentHeight = yield nightmare.evaluate(function() {
return document.body.scrollHeight;
});
yield nightmare.scrollTo(currentHeight, 0)
.wait(3000);
}
yield nightmare.end();
};

vo(run)(function(err) {
console.dir(err);
console.log('done');
});

希望这足以让您入门。

关于javascript - 点击事件的 Nightmare 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42590685/

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