I’m new to appium and below is my code snippet to scroll down which is failing. I have hardcoded the x and y co-ordinates to see if it works.
TouchAction touchAction = new TouchAction(driver);
touchAction.longPress(PointOption.point(120, 500)).
waitAction(WaitOptions.waitOptions(Duration.ofSeconds(3))).
moveTo(PointOption.point(120, 50)).release().perform();
When I run it i see logs as attached apmlogs.txt (6.5 KB)
Appium server: 1.7.1
Java_client: 6.1.0
Any suggesions would be really helpful.