Interface SupportsUsePrebuiltWdaOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> doesUsePrebuiltWda()
      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 usePrebuiltWda()
      Enforce to skip the build phase of running the WDA app.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • USE_PREBUILT_WDA_OPTION

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

      • 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 java.util.Optional<java.lang.Boolean> doesUsePrebuiltWda()
        Get whether to skip the build phase of running the WDA app.
        Returns:
        True or false.