Interface SupportsNativeWebTapStrictOption<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>,org.openqa.selenium.Capabilities,java.io.Serializable
- All Known Implementing Classes:
XCUITestOptions
public interface SupportsNativeWebTapStrictOption<T extends BaseOptions<T>> extends org.openqa.selenium.Capabilities, CanSetCapability<T>
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringNATIVE_WEB_TAP_STRICT_OPTION
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.Optional<java.lang.Boolean>doesNativeWebTapStrict()Get whether native taps are done by XCUITest driver rather than WebDriverAgent.default TnativeWebTapStrict()Enforce native taps to be done by XCUITest driver rather than WebDriverAgent.default TsetNativeWebTapStrict(boolean value)Configure native taps to be done by XCUITest driver rather than WebDriverAgent.-
Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapability
-
-
-
-
Field Detail
-
NATIVE_WEB_TAP_STRICT_OPTION
static final java.lang.String NATIVE_WEB_TAP_STRICT_OPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
nativeWebTapStrict
default T nativeWebTapStrict()
Enforce native taps to be done by XCUITest driver rather than WebDriverAgent.- Returns:
- self instance for chaining.
-
setNativeWebTapStrict
default T setNativeWebTapStrict(boolean value)
Configure native taps to be done by XCUITest driver rather than WebDriverAgent. Only applicable if nativeWebTap is enabled. false by default.- Parameters:
value- Whether native taps are done by XCUITest driver rather than WebDriverAgent.- Returns:
- self instance for chaining.
-
doesNativeWebTapStrict
default java.util.Optional<java.lang.Boolean> doesNativeWebTapStrict()
Get whether native taps are done by XCUITest driver rather than WebDriverAgent.- Returns:
- True or false.
-
-