Interface SupportsAllowDelayAdbOption<T extends BaseOptions<T>>

All Superinterfaces:
CanSetCapability<T>, org.openqa.selenium.Capabilities, Serializable
All Known Implementing Classes:
EspressoOptions, UiAutomator2Options

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

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    default Optional<Boolean>
    Get whether to prevent the emulator to use -delay-adb feature.
    default T
    setAllowDelayAdb(boolean value)
    Being set to false prevents emulator to use -delay-adb feature to detect its startup.

    Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability

    amend, setCapability

    Methods inherited from interface org.openqa.selenium.Capabilities

    asMap, get, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatformName, is, merge, required
  • Field Details

  • Method Details

    • setAllowDelayAdb

      default T setAllowDelayAdb(boolean value)
      Being set to false prevents emulator to use -delay-adb feature to detect its startup. See https://github.com/appium/appium/issues/14773 for more details.
      Parameters:
      value - Set it to false in order to prevent the emulator to use -delay-adb feature.
      Returns:
      self instance for chaining.
    • doesAllowDelayAdb

      default Optional<Boolean> doesAllowDelayAdb()
      Get whether to prevent the emulator to use -delay-adb feature.
      Returns:
      True or false.