Thank you very much for the fast and detailed response.
However, it doesn’t seem to work for me.
I am facing a strange behavior.
If I run the following code :
new TouchAction(driver).press(300,75).moveTo(0,-50).release().perform()
Then It swipes up (as expected).
But then, if I run the following code (with the minor changes):
new TouchAction(driver).press(300,75).moveTo(-50,0).release().perform()
It just clicks on the object in (300,75) and won’t swipe.
Any ideas?
Thanks.