Interface SupportsUsePrebuiltWdaOption<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>,org.openqa.selenium.Capabilities,java.io.Serializable
- All Known Implementing Classes:
XCUITestOptions
public interface SupportsUsePrebuiltWdaOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringUSE_PREBUILT_WDA_OPTION
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.Optional<java.lang.Boolean>doesUsePrebuiltWda()Get whether to skip the build phase of running the WDA app.default TsetUsePrebuiltWda(boolean value)Skips the build phase of running the WDA app.default TusePrebuiltWda()Enforce to skip the build phase of running the WDA app.-
Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapability
-
-
-
-
Field Detail
-
USE_PREBUILT_WDA_OPTION
static final java.lang.String USE_PREBUILT_WDA_OPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
usePrebuiltWda
default T usePrebuiltWda()
Enforce to skip the build phase of running the WDA app.- Returns:
- self instance for chaining.
-
setUsePrebuiltWda
default T setUsePrebuiltWda(boolean value)
Skips the build phase of running the WDA app. Building is then the responsibility of the user. Only works for Xcode 8+. Defaults to false.- Parameters:
value- Whether to skip the build phase of running the WDA app.- Returns:
- self instance for chaining.
-
doesUsePrebuiltWda
default java.util.Optional<java.lang.Boolean> doesUsePrebuiltWda()
Get whether to skip the build phase of running the WDA app.- Returns:
- True or false.
-
-