Interface SupportsResultBundlePathOption<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>
,org.openqa.selenium.Capabilities
,java.io.Serializable
- All Known Implementing Classes:
XCUITestOptions
public interface SupportsResultBundlePathOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
RESULT_BUNDLE_PATH_OPTION
-
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 io.appium.java_client.remote.options.CanSetCapability
amend, setCapability
-
-
-
-
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.
-
-