Interface SupportsSimulatorTracePointerOption<T extends BaseOptions<T>>
-
- All Superinterfaces:
CanSetCapability<T>,org.openqa.selenium.Capabilities,java.io.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 java.lang.StringSIMULATOR_TRACE_POINTER_OPTION
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default java.util.Optional<java.lang.Boolean>doesSimulatorTracePointer()Get whether to highlight pointer moves in the Simulator window.default TsetSimulatorTracePointer(boolean value)Whether to highlight pointer moves in the Simulator window.default TsimulatorTracePointer()Enforce highlight of pointer moves in the Simulator window.-
Methods inherited from interface io.appium.java_client.remote.options.CanSetCapability
amend, setCapability
-
-
-
-
Field Detail
-
SIMULATOR_TRACE_POINTER_OPTION
static final java.lang.String SIMULATOR_TRACE_POINTER_OPTION
- See Also:
- Constant Field Values
-
-
Method Detail
-
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 java.util.Optional<java.lang.Boolean> doesSimulatorTracePointer()
Get whether to highlight pointer moves in the Simulator window.- Returns:
- True or false.
-
-