0

多年来一直试图向下滚动页面。我可以看到指针在 android 模拟器设备上移动(在选项中启用),但它没有向下移动页面,所以我无法单击折叠下方的元素,它找不到该元素。任何帮助表示赞赏。

我正在做:

await el.touchAction([ {action: 'press', x: 50, y: 1500}, {action: 'moveTo', x: 50, y: 1300}, 'release' ])

并尝试了许多其他的东西。它不适用于ios和android。我原以为这是如此根本。

4

1 回答 1

1

我找到了一种对我有用的方法,代码非常相似,只是在pressand之间添加了一个等待moveTo

   await el.touchAction([
  { action: 'press', x: 540, y: 900 },
  { action: 'wait', ms: 500 },
  { action: 'moveTo', x: 540, y: 480 },
  'release']);
于 2020-01-17T09:25:16.093 回答