Interface SupportsChromedriverDisableBuildCheckOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default T chromedriverDisableBuildCheck()
      Disables the compatibility validation between the current chromedriver and the destination browser/web view.
      default java.util.Optional<java.lang.Boolean> doesChromedriverDisableBuildCheck()
      Get whether to disable the compatibility validation between the current chromedriver and the destination browser/web view.
      default T setChromedriverDisableBuildCheck​(boolean value)
      Being set to true disables the compatibility validation between the current chromedriver and the destination browser/web view.
      • Methods inherited from interface org.openqa.selenium.Capabilities

        asMap, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatform, getPlatformName, getVersion, is, merge
    • Field Detail

      • CHROMEDRIVER_DISABLE_BUILD_CHECK_OPTION

        static final java.lang.String CHROMEDRIVER_DISABLE_BUILD_CHECK_OPTION
        See Also:
        Constant Field Values
    • Method Detail

      • 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 java.util.Optional<java.lang.Boolean> doesChromedriverDisableBuildCheck()
        Get whether to disable the compatibility validation between the current chromedriver and the destination browser/web view.
        Returns:
        True or false.