我想根据来自运行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() {
但它不起作用,因为重复无法找到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() {
现在我没有得到任何synthax错误,但重复根本没有执行(myvalue = 49)
答案 0 :(得分:2)
我认为casper.repeat
和casper.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()语句在执行repeat()之前等待执行前一个waitForSelector()。