Interface SupportsIntentActionOption<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>,org.openqa.selenium.Capabilities,java.io.Serializable
- All Known Implementing Classes:
UiAutomator2Options
public interface SupportsIntentActionOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringINTENT_ACTION_OPTION
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.Optional<java.lang.String>getIntentAction()Get intent action to be applied when starting the given appActivity by Activity Manager.default TsetIntentAction(java.lang.String intentAction)Set an optional intent action 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
-
INTENT_ACTION_OPTION
static final java.lang.String INTENT_ACTION_OPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
setIntentAction
default T setIntentAction(java.lang.String intentAction)
Set an optional intent action to be applied when starting the given appActivity by Activity Manager.- Parameters:
intentAction- Intent action class name.- Returns:
- self instance for chaining.
-
getIntentAction
default java.util.Optional<java.lang.String> getIntentAction()
Get intent action to be applied when starting the given appActivity by Activity Manager.- Returns:
- Intent action class name.
-
-