Interface SupportsUseSystemExecutableOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> isUseSystemExecutable()
      Get the use system executable flag.
      default T setUseSystemExecutable​(boolean useSystemExecutable)
      Set to true to use the version of WebDriver bundled with this driver, rather than attempting to download a new one based on the version of the browser under test.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • USE_SYSTEM_EXECUTABLE

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

      • setUseSystemExecutable

        default T setUseSystemExecutable​(boolean useSystemExecutable)
        Set to true to use the version of WebDriver bundled with this driver, rather than attempting to download a new one based on the version of the browser under test. Unless disable build check preference has been user-set, the capability is not present because the default value is false.
        Parameters:
        useSystemExecutable - flag.
        Returns:
        self instance for chaining.
      • isUseSystemExecutable

        default java.util.Optional<java.lang.Boolean> isUseSystemExecutable()
        Get the use system executable flag.
        Returns:
        use system executable flag.