Interface SupportsUsePrebuiltWdaOption<T extends BaseOptions<T>>

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

public interface SupportsUsePrebuiltWdaOption<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 skip the build phase of running the WDA app.
    default T
    setUsePrebuiltWda(boolean value)
    Skips the build phase of running the WDA app.
    default T
    Enforce to skip the build phase of running the WDA app.

    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

    • usePrebuiltWda

      default T usePrebuiltWda()
      Enforce to skip the build phase of running the WDA app.
      Returns:
      self instance for chaining.
    • setUsePrebuiltWda

      default T setUsePrebuiltWda(boolean value)
      Skips the build phase of running the WDA app. Building is then the responsibility of the user. Only works for Xcode 8+. Defaults to false.
      Parameters:
      value - Whether to skip the build phase of running the WDA app.
      Returns:
      self instance for chaining.
    • doesUsePrebuiltWda

      default Optional<Boolean> doesUsePrebuiltWda()
      Get whether to skip the build phase of running the WDA app.
      Returns:
      True or false.