Interface SupportsForceAppLaunchOption<T extends BaseOptions<T>>
- All Superinterfaces:
CanSetCapability<T>,org.openqa.selenium.Capabilities,Serializable
- All Known Implementing Classes:
XCUITestOptions
public interface SupportsForceAppLaunchOption<T extends BaseOptions<T>>
extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionGet whether to enforce app restart on session startup.default TsetForceAppLaunch(boolean value) Specify if the app should be forcefully restarted if it is already running on session startup.Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapabilityMethods inherited from interface org.openqa.selenium.Capabilities
asMap, get, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatformName, is, merge, required
-
Field Details
-
FORCE_APP_LAUNCH_OPTION
- See Also:
-
-
Method Details
-
setForceAppLaunch
Specify if the app should be forcefully restarted if it is already running on session startup. This capability only has an effect if an application identifier has been passed to the test session (either explicitly, by setting bundleId, or implicitly, by providing app). Default is true unless noReset capability is set to true.- Parameters:
value- Whether to enforce app restart on session startup.- Returns:
- self instance for chaining.
-
doesForceAppLaunch
Get whether to enforce app restart on session startup.- Returns:
- True or false.
-