Interface SupportsNativeWebTapStrictOption<T extends BaseOptions<T>>

    • 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 T nativeWebTapStrict()
      Enforce native taps to be done by XCUITest driver rather than WebDriverAgent.
      default T setNativeWebTapStrict​(boolean value)
      Configure native taps to be done by XCUITest driver rather than WebDriverAgent.
      • Methods inherited from interface org.openqa.selenium.Capabilities

        asMap, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatform, getPlatformName, getVersion, is, merge
    • 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.