本帖最后由 gouki9527 于 2021-6-19 14:50 编辑
求助写了一个遍历for循环,由于才接触不久,发现获取length有点问题。如何获取list_x这个length.【现在获取不到list_x】
这样是OK的,但是套用length就不行了
[Bash shell] 纯文本查看 复制代码
for(var i=1;i<10;i++){
var top = className("android.widget.RelativeLayout").column(0).depth(3).row(i).findOne(1000);
if (top) {
top.click();
sleep(1000);
}
}
套用length失败 页面row() 有20个列表 我想直接length直接识别列表,然后逐一遍历。
[Bash shell] 纯文本查看 复制代码 var list_x = textMatches(className("android.widget.RelativeLayout").column(0).depth(3).row()).find();
for(var i=1;i<list_x.length;i++){
var top = className("android.widget.RelativeLayout").column(0).depth(3).row(i).findOne(1000);
if (top) {
top.click();
sleep(1000);
}
}
|