Interface SupportsAvdLaunchTimeoutOption<T extends BaseOptions<T>>

    • Method Summary

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

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

      • AVD_LAUNCH_TIMEOUT_OPTION

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

      • setAvdLaunchTimeout

        default T setAvdLaunchTimeout​(java.time.Duration timeout)
        Maximum timeout to wait until Android Emulator is started. 60000 ms by default.
        Parameters:
        timeout - Timeout value.
        Returns:
        self instance for chaining.
      • getAvdLaunchTimeout

        default java.util.Optional<java.time.Duration> getAvdLaunchTimeout()
        Get the timeout to wait until Android Emulator is started.
        Returns:
        The timeout value.