gpt4 book ai didi

casperjs - 如何为 casper.repeat 设置变量值

转载 作者:行者123 更新时间:2023-12-02 01:48:53 25 4
gpt4 key购买 nike

我想根据来 self 运行 CasperJS 的页面的变量值重复使用 CasperJS 的步骤。

为了获得这个值,我做了类似的事情:

casper.waitForSelector(".xxxx", function () {
myvalue = this.evaluate(function() {
value = Math.ceil(document.querySelector('#yyy').getAttribute('data-all')/10)-1;
return value;
});
});

然后我尝试做类似的事情:

casper.repeat(myvalue, function() {

但它不起作用,因为 repeat 找不到 myvalue 变量。知道如何实现这样的目标吗?

编辑

现在我试试这个:

var myvalue = "";                 

casper.waitForSelector(".xxxx", function () {
myvalue = this.evaluate(function() {
value = Math.ceil(document.querySelector('#connections').getAttribute('data-num-all')/10)-1;
return value;
});
});

casper.repeat(myvalue, function() {

现在我没有收到任何语法错误,但根本没有执行重复 (myvalue=49)

最佳答案

我认为 casper.repeatcasper.waitForSelector 是异步执行的,所以 repeat()waitFor( )

试试看:

var myvalue = "";                 

casper.waitForSelector(".xxxx", function () {
myvalue = this.evaluate(function() {
value = Math.ceil(document.querySelector('#connections').getAttribute('data-num-all')/10)-1;
return value;
});
});

casper.then(function(){
casper.repeat(myvalue, function() {
this.echo("Here the code to be executed 'myvalue' times");
});
});

then() 语句等待前面的 waitForSelector() 执行完之后再执行 repeat()。

关于casperjs - 如何为 casper.repeat 设置变量值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24003667/

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