Interface SupportsSkipDeviceInitializationOption<T extends BaseOptions<T>>
- All Superinterfaces:
CanSetCapability<T>,org.openqa.selenium.Capabilities,Serializable
- All Known Implementing Classes:
UiAutomator2Options
public interface SupportsSkipDeviceInitializationOption<T extends BaseOptions<T>>
extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionGet whether initial device startup checks by the server are disabled.default TsetSkipDeviceInitialization(boolean value) If set to true then device startup checks (whether it is ready and whether Settings app is installed) will be canceled on session creation.default TDisables initial device startup checks by the server.Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapabilityMethods inherited from interface org.openqa.selenium.Capabilities
asMap, get, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatformName, is, merge, required
-
Field Details
-
SKIP_DEVICE_INITIALIZATION_OPTION
- See Also:
-
-
Method Details
-
skipDeviceInitialization
Disables initial device startup checks by the server.- Returns:
- self instance for chaining.
-
setSkipDeviceInitialization
If set to true then device startup checks (whether it is ready and whether Settings app is installed) will be canceled on session creation. Could speed up the session creation if you know what you are doing. false by default- Parameters:
value- True to skip device initialization.- Returns:
- self instance for chaining.
-
doesSkipDeviceInitialization
Get whether initial device startup checks by the server are disabled.- Returns:
- True or false.
-