Interface SupportsSimulatorTracePointerOption<T extends BaseOptions<T>>

All Superinterfaces:
CanSetCapability<T>, org.openqa.selenium.Capabilities, Serializable
All Known Implementing Classes:
XCUITestOptions

public interface SupportsSimulatorTracePointerOption<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 to highlight pointer moves in the Simulator window.
    default T
    setSimulatorTracePointer(boolean value)
    Whether to highlight pointer moves in the Simulator window.
    default T
    Enforce highlight of pointer moves in the Simulator window.

    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

    • simulatorTracePointer

      default T simulatorTracePointer()
      Enforce highlight of pointer moves in the Simulator window.
      Returns:
      self instance for chaining.
    • setSimulatorTracePointer

      default T setSimulatorTracePointer(boolean value)
      Whether to highlight pointer moves in the Simulator window. The Simulator UI client must be shut down before the session startup in order for this capability to be applied properly. false by default.
      Parameters:
      value - Whether to highlight pointer moves in the Simulator window.
      Returns:
      self instance for chaining.
    • doesSimulatorTracePointer

      default Optional<Boolean> doesSimulatorTracePointer()
      Get whether to highlight pointer moves in the Simulator window.
      Returns:
      True or false.