Interface SupportsPrebuiltWdaPathOption<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>
,org.openqa.selenium.Capabilities
,java.io.Serializable
- All Known Implementing Classes:
XCUITestOptions
public interface SupportsPrebuiltWdaPathOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
PREBUILT_WDA_PATH_OPTION
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.Optional<java.lang.String>
getPrebuiltWdaPath()
Get prebuilt WebDriverAgent path.default T
setPrebuiltWdaPath(java.lang.String path)
The full path to the prebuilt WebDriverAgent-Runner application package to be installed if appium:usePreinstalledWDA capability is enabled.-
Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapability
-
-
-
-
Field Detail
-
PREBUILT_WDA_PATH_OPTION
static final java.lang.String PREBUILT_WDA_PATH_OPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
setPrebuiltWdaPath
default T setPrebuiltWdaPath(java.lang.String path)
The full path to the prebuilt WebDriverAgent-Runner application package to be installed if appium:usePreinstalledWDA capability is enabled. The package's bundle identifier could be customized via appium:updatedWDABundleId capability.- Parameters:
path
- The full path to the bundle .app file on the server file system.- Returns:
- self instance for chaining.
-
getPrebuiltWdaPath
default java.util.Optional<java.lang.String> getPrebuiltWdaPath()
Get prebuilt WebDriverAgent path.- Returns:
- The full path to the bundle .app file on the server file system.
-
-