Interface SupportsOptionalIntentArgumentsOption<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>,org.openqa.selenium.Capabilities,java.io.Serializable
- All Known Implementing Classes:
UiAutomator2Options
public interface SupportsOptionalIntentArgumentsOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringOPTIONAL_INTENT_ARGUMENTS_OPTION
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.Optional<java.lang.String>getOptionalIntentArguments()Get intent arguments to be applied when starting the given appActivity by Activity Manager.default TsetOptionalIntentArguments(java.lang.String arguments)Set an optional intent arguments to be applied when starting the given appActivity by Activity Manager.-
Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapability
-
-
-
-
Field Detail
-
OPTIONAL_INTENT_ARGUMENTS_OPTION
static final java.lang.String OPTIONAL_INTENT_ARGUMENTS_OPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
setOptionalIntentArguments
default T setOptionalIntentArguments(java.lang.String arguments)
Set an optional intent arguments to be applied when starting the given appActivity by Activity Manager.- Parameters:
arguments- Intent arguments string.- Returns:
- self instance for chaining.
-
getOptionalIntentArguments
default java.util.Optional<java.lang.String> getOptionalIntentArguments()
Get intent arguments to be applied when starting the given appActivity by Activity Manager.- Returns:
- Intent arguments string.
-
-