Can you help me in a thing?
I’m see what o command touchPerform do not work in Appium 2x. So i try do o gesture swipe with Actions, but all the my try do fails.
I tried this way:
await driver.actions
([
await driver.action('pointer', { pointerType: 'touch', start: startCoords }),
await driver.action('pointer', { pointerType: 'pause', ms: 1000 }),
await driver.action('pointer', { pointerType: 'moveTo', end: endCoords })
])
but this not work for me, Do you know any other ways?