作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想根据来 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.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() 语句等待前面的 waitForSelector() 执行完之后再执行 repeat()。
关于casperjs - 如何为 casper.repeat 设置变量值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24003667/
我是一名优秀的程序员,十分优秀!