Interface SupportsResultBundlePathOption<T extends BaseOptions<T>>

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default java.util.Optional<java.lang.String> getResultBundlePath()
      Get the path where the resulting XCTest bundle should be stored.
      default T setResultBundlePath​(java.lang.String path)
      Specify the path to the result bundle path as xcodebuild argument for WebDriverAgent build under a security flag.
      • Methods inherited from interface org.openqa.selenium.Capabilities

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

      • RESULT_BUNDLE_PATH_OPTION

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

      • setResultBundlePath

        default T setResultBundlePath​(java.lang.String path)
        Specify the path to the result bundle path as xcodebuild argument for WebDriverAgent build under a security flag. WebDriverAgent process must start/stop every time to pick up changed value of this property. Specifying useNewWDA to true may help there. Please read man xcodebuild for more details.
        Parameters:
        path - The path where the resulting XCTest bundle should be stored.
        Returns:
        self instance for chaining.
      • getResultBundlePath

        default java.util.Optional<java.lang.String> getResultBundlePath()
        Get the path where the resulting XCTest bundle should be stored.
        Returns:
        XCTest result bundle path.