Interface SupportsUseSimpleBuildTestOption<T extends BaseOptions<T>>

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

public interface SupportsUseSimpleBuildTestOption<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 use simple build test.
    default T
    setUseSimpleBuildTest(boolean value)
    Build with build and run test with test in xcodebuild for all Xcode versions if this is true, or build with build-for-testing and run tests with test-without-building for over Xcode 8 if this is false.
    default T
    Enforce usage of simple build test.

    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

    • useSimpleBuildTest

      default T useSimpleBuildTest()
      Enforce usage of simple build test.
      Returns:
      self instance for chaining.
    • setUseSimpleBuildTest

      default T setUseSimpleBuildTest(boolean value)
      Build with build and run test with test in xcodebuild for all Xcode versions if this is true, or build with build-for-testing and run tests with test-without-building for over Xcode 8 if this is false. Defaults to false.
      Parameters:
      value - Whether to use simple build test.
      Returns:
      self instance for chaining.
    • doesUseSimpleBuildTest

      default Optional<Boolean> doesUseSimpleBuildTest()
      Get whether to use simple build test.
      Returns:
      True or false.