Interface SupportsNativeWebTapStrictOption<T extends BaseOptions<T>>

All Superinterfaces:
CanSetCapability<T>, org.openqa.selenium.Capabilities, 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 final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    default Optional<Boolean>
    Get whether native taps are done by XCUITest driver rather than WebDriverAgent.
    default T
    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 io.appium.java_client.remote.options.CanSetCapability

    amend, setCapability

    Methods inherited from interface org.openqa.selenium.Capabilities

    asMap, get, getBrowserName, getBrowserVersion, getCapability, getCapabilityNames, getPlatformName, is, merge, required
  • Field Details

  • Method Details

    • 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 Optional<Boolean> doesNativeWebTapStrict()
      Get whether native taps are done by XCUITest driver rather than WebDriverAgent.
      Returns:
      True or false.