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
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    default Optional<Boolean>
    Get whether to skip the server components installation on the device under test and all the related checks.
    default T
    Set whether to skip the server components installation on the device under test and all the related checks.
    default T
    Enables 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, setCapability

    Methods inherited from interface org.openqa.selenium.Capabilities

    asMap, get, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatformName, is, merge, required
  • Field Details

  • Method Details

    • skipServerInstallation

      default T 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

      default T setSkipServerInstallation(boolean value)
      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

      default Optional<Boolean> doesSkipServerInstallation()
      Get whether to skip the server components installation on the device under test and all the related checks.
      Returns:
      True or false.