
io.appium.java_client.flutter.SupportsScrollingOfFlutterElements Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client for Appium Mobile Webdriver
The newest version!
package io.appium.java_client.flutter;
import io.appium.java_client.flutter.commands.ScrollParameter;
import org.openqa.selenium.WebElement;
public interface SupportsScrollingOfFlutterElements extends CanExecuteFlutterScripts {
/**
* Scrolls to make an element visible on the screen.
*
* @param parameter The parameters for scrolling, specifying element details.
* @return The WebElement that was scrolled to.
*/
default WebElement scrollTillVisible(ScrollParameter parameter) {
return (WebElement) executeFlutterCommand("scrollTillVisible", parameter);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy