
io.appium.java_client.flutter.FlutterIntegrationTestDriver 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 org.openqa.selenium.WebDriver;
/**
* The {@code FlutterDriver} interface represents a driver that controls interactions with
* Flutter applications, extending WebDriver and providing additional capabilities for
* interacting with Flutter-specific elements and behaviors.
*
* This interface serves as a common entity for drivers that support Flutter applications
* on different platforms, such as Android and iOS.
*
* @see WebDriver
* @see SupportsGestureOnFlutterElements
* @see SupportsScrollingOfFlutterElements
* @see SupportsWaitingForFlutterElements
*/
public interface FlutterIntegrationTestDriver extends
WebDriver,
SupportsGestureOnFlutterElements,
SupportsScrollingOfFlutterElements,
SupportsWaitingForFlutterElements,
SupportsFlutterCameraMocking {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy