Interface SupportsChromedriverDisableBuildCheckOption<T extends BaseOptions<T>>

All Superinterfaces:
CanSetCapability<T>, org.openqa.selenium.Capabilities, Serializable
All Known Implementing Classes:
EspressoOptions, UiAutomator2Options

public interface SupportsChromedriverDisableBuildCheckOption<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 T
    Disables the compatibility validation between the current chromedriver and the destination browser/web view.
    default Optional<Boolean>
    Get whether to disable the compatibility validation between the current chromedriver and the destination browser/web view.
    default T
    Being set to true disables the compatibility validation between the current chromedriver and the destination browser/web view.

    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

    • CHROMEDRIVER_DISABLE_BUILD_CHECK_OPTION

      static final String CHROMEDRIVER_DISABLE_BUILD_CHECK_OPTION
      See Also:
  • Method Details

    • chromedriverDisableBuildCheck

      default T chromedriverDisableBuildCheck()
      Disables the compatibility validation between the current chromedriver and the destination browser/web view.
      Returns:
      self instance for chaining.
    • setChromedriverDisableBuildCheck

      default T setChromedriverDisableBuildCheck(boolean value)
      Being set to true disables the compatibility validation between the current chromedriver and the destination browser/web view. Use it with care. false by default.
      Parameters:
      value - Whether to enable the validation.
      Returns:
      self instance for chaining.
    • doesChromedriverDisableBuildCheck

      default Optional<Boolean> doesChromedriverDisableBuildCheck()
      Get whether to disable the compatibility validation between the current chromedriver and the destination browser/web view.
      Returns:
      True or false.