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