Interface SupportsWdaStartupRetryIntervalOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.time.Duration> getWdaStartupRetryInterval()
      Get the interval to wait between tries to build and launch WebDriverAgent.
      default T setWdaStartupRetryInterval​(java.time.Duration interval)
      Time interval to wait between tries to build and launch WebDriverAgent.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • WDA_STARTUP_RETRY_INTERVAL_OPTION

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

      • setWdaStartupRetryInterval

        default T setWdaStartupRetryInterval​(java.time.Duration interval)
        Time interval to wait between tries to build and launch WebDriverAgent. Defaults to 10000ms.
        Parameters:
        interval - Interval value.
        Returns:
        self instance for chaining.
      • getWdaStartupRetryInterval

        default java.util.Optional<java.time.Duration> getWdaStartupRetryInterval()
        Get the interval to wait between tries to build and launch WebDriverAgent.
        Returns:
        Interval value.