请教下我在app中有个按钮是提交,我用手指点击是可以的,但是用autojs无论是 元素click还是传入元素的bounds 坐标点click ,还是用press 、gusture 都没用,这是什么原因??应该如何实现,因为我在真机中使用真实的手指是可以点击的 !
当我查找他的parent可以点击的,也是没有找到可点击的parent
//gesture(500, [bounds.centerX(), bounds.centerY()], [bounds.centerX(), bounds.centerY()]);
console.log('bbb');
//click(element.bounds().centerX(), element.bounds().centerY());
console.log('按下鼠标');
//click(element.bounds().centerX(), element.bounds().centerY());
//swipe(bounds.centerX(), bounds.centerY(), bounds.centerX(), bounds.centerY() - 300, 500);
gesture(500,
[bounds.centerX(), bounds.centerY()],
[bounds.centerX()-5, bounds.centerY()-5],
[bounds.centerX()-3, bounds.centerY()-3],
[bounds.centerX()-1, bounds.centerY()-1],
[bounds.centerX()+1, bounds.centerY()+1],
[bounds.centerX()+3, bounds.centerY()+3]
);

// 使用模拟点击操作
var x = (bounds.left + bounds.right) / 2;
var y = (bounds.top + bounds.bottom) / 2;
//click(600, 1700);
这些方法都测试了 不管用

最后由 313966451a 编辑