So l am using the below by bounds method in a page(Lets call this page page 1)
public static void scrollByBounds(AndroidDriver driver, int startX, int startY, int endX, int endY) {
System.out.println("π Scrolling from [" + startX + "," + startY + "] to [" + endX + "," + endY + "]");
Dimension screenSize = driver.manage().window().getSize();
int screenWidth = screenSize.width;
int screenHeight = screenSize.height;
System.out.println("π± Screen size: Width=" + screenWidth + ", Height=" + screenHeight);
// Ensure the coordinates are within screen bounds
if (startX < 0 || startY < 0 || endX > screenWidth || endY > screenHeight) {
System.out.println("β Invalid coordinates! Adjusting...");
startX = Math.max(0, Math.min(startX, screenWidth - 1));
startY = Math.max(0, Math.min(startY, screenHeight - 1));
endX = Math.max(0, Math.min(endX, screenWidth - 1));
endY = Math.max(0, Math.min(endY, screenHeight - 1));
}
PointerInput finger = new PointerInput(PointerInput.Kind.TOUCH, "finger1");
Sequence swipe = new Sequence(finger, 1);
swipe.addAction(finger.createPointerMove(Duration.ZERO, PointerInput.Origin.viewport(), startX, startY));
swipe.addAction(finger.createPointerDown(PointerInput.MouseButton.LEFT.asArg()));
swipe.addAction(finger.createPointerMove(Duration.ofMillis(1000), PointerInput.Origin.viewport(), endX, endY));
swipe.addAction(finger.createPointerUp(PointerInput.MouseButton.LEFT.asArg()));
driver.perform(Collections.singletonList(swipe));
System.out.println("β
Scrolling complete!");
}
l then call the method in the test class like this scrollByBounds(driver, 32, 1580, 688, 190);
This works well in page 1 but does not work in page 2.
ln page 2 l have also tried to scroll using
WebElement webViewElement = driver.findElement(AppiumBy.androidUIAutomator(
"new UiScrollable(new UiSelector().scrollable(true)).scrollIntoView(new UiSelector().textContains(\"No 2 Ikoyi Road Lagos\"))"
))
it scrolls but bounces back up after getting to the target element or does not get to the target element sometimes.
swipe, scrollgestures and flintgestures are not working on the page. l need help with this as l have tried solving for it for days now. Thanks