Interface SupportsMsExperimentalWebDriverOption<T extends BaseOptions<T>>

  • All Superinterfaces:
    CanSetCapability<T>, org.openqa.selenium.Capabilities, java.io.Serializable
    All Known Implementing Classes:
    WindowsOptions

    public interface SupportsMsExperimentalWebDriverOption<T extends BaseOptions<T>>
    extends org.openqa.selenium.Capabilities, CanSetCapability<T>
    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default T experimentalWebDriver()
      Enforce to enable experimental driver features and optimizations.
      default java.util.Optional<java.lang.Boolean> isExperimentalWebDriver()
      Get whether to enable experimental features and optimizations.
      default T setExperimentalWebDriver​(boolean value)
      Enables experimental features and optimizations.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • MS_EXPERIMENTAL_WEBDRIVER_OPTION

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

      • experimentalWebDriver

        default T experimentalWebDriver()
        Enforce to enable experimental driver features and optimizations.
        Returns:
        self instance for chaining.
      • setExperimentalWebDriver

        default T setExperimentalWebDriver​(boolean value)
        Enables experimental features and optimizations. See Appium Windows Driver release notes for more details on this capability. false by default.
        Parameters:
        value - Whether to enable experimental features and optimizations.
        Returns:
        self instance for chaining.
      • isExperimentalWebDriver

        default java.util.Optional<java.lang.Boolean> isExperimentalWebDriver()
        Get whether to enable experimental features and optimizations.
        Returns:
        True or false.