Interface SupportsSkipServerInstallationOption<T extends BaseOptions<T>>
- All Superinterfaces:
CanSetCapability<T>,org.openqa.selenium.Capabilities,Serializable
- All Known Implementing Classes:
EspressoOptions,UiAutomator2Options
public interface SupportsSkipServerInstallationOption<T extends BaseOptions<T>>
extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionGet whether to skip the server components installation on the device under test and all the related checks.default TsetSkipServerInstallation(boolean value) Set whether to skip the server components installation on the device under test and all the related checks.default TEnables skipping of the server components installation on the device under test and all the related checks.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_SERVER_INSTALLATION_OPTION
- See Also:
-
-
Method Details
-
skipServerInstallation
Enables skipping of the server components installation on the device under test and all the related checks. This could help to speed up the session startup if you know for sure the correct server version is installed on the device. In case the server is not installed or an incorrect version of it is installed then you may get an unexpected error later.- Returns:
- self instance for chaining.
-
setSkipServerInstallation
Set whether to skip the server components installation on the device under test and all the related checks. This could help to speed up the session startup if you know for sure the correct server version is installed on the device. In case the server is not installed or an incorrect version of it is installed then you may get an unexpected error later.- Parameters:
value- True to skip the server installation.- Returns:
- self instance for chaining.
-
doesSkipServerInstallation
Get whether to skip the server components installation on the device under test and all the related checks.- Returns:
- True or false.
-