Interface SupportsAllowDelayAdbOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> doesAllowDelayAdb()
      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 org.openqa.selenium.Capabilities

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

      • ALLOW_DELAY_ADB_OPTION

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

      • 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 java.util.Optional<java.lang.Boolean> doesAllowDelayAdb()
        Get whether to prevent the emulator to use -delay-adb feature.
        Returns:
        True or false.