Interface SupportsUseSimpleBuildTestOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.Boolean> doesUseSimpleBuildTest()
      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 useSimpleBuildTest()
      Enforce usage of simple build test.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • USE_SIMPLE_BUILD_TEST_OPTION

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

      • 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 java.util.Optional<java.lang.Boolean> doesUseSimpleBuildTest()
        Get whether to use simple build test.
        Returns:
        True or false.