0
Hello, good morning!
Can you help me? I’m trying to scroll in an automated test on an android, but nothing happens. It’s the screen below:
I need to scroll in the three columns in order to select a specific date. I have tried to use the same logic I used on another screen but simply nothing happens. Follow the code used:
new TouchAction(driver).longPress(PointOption.point(245, 1822))
.moveTo(PointOption.point(245, 1700))
.release().perform();
Has anyone been through a similar problem?