Hi all,
I made tests with android on chrome it’s working fine
But now I try to do it with Safari on ios …
The problem is when I try to swipe, the first touch is too long before starting to swipe and the ipad open a popup of copy like if I was performing a long tap …
my code :
String originalContext = mDriver.getContext();
mDriver.context("NATIVE_APP");
screenSize = mDriver.manage().window().getSize();
mDriver.context(originalContext);
int starty = (int) (screenSize.height * 0.40);
int endy = (int) (screenSize.width * 0.50);
int startx = screenSize.height / 2;
WebSwipe(mDriver, startx, starty, startx, endy, 3000);
scroll = scroll + starty - endy;
Does anyone know how to fix this ?
If I’m not clear ask me and i’ll explain my problem differently