尝试使用 appium + wdio 滚动
Trying to scroll using appium + wdio
多年来一直试图向下滚动页面。我可以看到指针在 android 模拟器设备(在选项中启用)上移动,但它没有向下移动页面,所以我无法单击折叠下方的元素,它找不到该元素。任何帮助表示赞赏。
我在做:
await el.touchAction([ {action: 'press', x: 50, y: 1500}, {action: 'moveTo', x: 50, y: 1300}, 'release' ])
并尝试了许多其他的东西。它不适用于 ios 或 android。我还以为这太基础了。
我找到了一种非常相似的代码对我有用的方法,只是在 press
和 moveTo
之间添加了一个等待:
await el.touchAction([
{ action: 'press', x: 540, y: 900 },
{ action: 'wait', ms: 500 },
{ action: 'moveTo', x: 540, y: 480 },
'release']);
多年来一直试图向下滚动页面。我可以看到指针在 android 模拟器设备(在选项中启用)上移动,但它没有向下移动页面,所以我无法单击折叠下方的元素,它找不到该元素。任何帮助表示赞赏。
我在做:
await el.touchAction([ {action: 'press', x: 50, y: 1500}, {action: 'moveTo', x: 50, y: 1300}, 'release' ])
并尝试了许多其他的东西。它不适用于 ios 或 android。我还以为这太基础了。
我找到了一种非常相似的代码对我有用的方法,只是在 press
和 moveTo
之间添加了一个等待:
await el.touchAction([
{ action: 'press', x: 540, y: 900 },
{ action: 'wait', ms: 500 },
{ action: 'moveTo', x: 540, y: 480 },
'release']);