Interface SupportsAvdReadyTimeoutOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.time.Duration> getAvdReadyTimeout()
      Get the timeout to wait until Android Emulator is fully booted and is ready for usage.
      default T setAvdReadyTimeout​(java.time.Duration timeout)
      Maximum timeout to wait until Android Emulator is fully booted and is ready for usage.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • AVD_READY_TIMEOUT_OPTION

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

      • setAvdReadyTimeout

        default T setAvdReadyTimeout​(java.time.Duration timeout)
        Maximum timeout to wait until Android Emulator is fully booted and is ready for usage. 60000 ms by default
        Parameters:
        timeout - Timeout value.
        Returns:
        self instance for chaining.
      • getAvdReadyTimeout

        default java.util.Optional<java.time.Duration> getAvdReadyTimeout()
        Get the timeout to wait until Android Emulator is fully booted and is ready for usage.
        Returns:
        The timeout value.