i trying to swipe up inside my android app. But its not working. I using java-client-8.0.0 and Selenium-server-4.1.2
I tryied allready:
TouchAction ta = new TouchAction(driver);
PointOption poStart = new PointOption();
PointOption poEnd = new PointOption();
poStart.point(656, 1393);
poEnd.point(437, 619);
ta.press(poStart).moveTo(poEnd).release().perform();
But TouchAction is deprecated.
How to scroll/swipe up on Android with Java?