Skip to content

InputEvent

InputEvent = object

Defined in: events.ts:86

A recorded user input action containing one or more inner mouse events. mouseMove, mouseShow, and mouseHide subtypes each contain exactly one inner event. All input events must not overlap in time; recording will throw if they do. Captions are automatically prevented from falling inside any input event’s time range.

optional elementRect?: ElementRect

Defined in: events.ts:101


events: (MouseMoveEvent | MouseDownEvent | MouseUpEvent | MouseShowEvent | MouseHideEvent | MouseWaitEvent)[]

Defined in: events.ts:102


subType: "click" | "pressSequentially" | "tap" | "check" | "uncheck" | "select" | "mouseMove" | "mouseShow" | "mouseHide" | "hover" | "selectText" | "dragTo"

Defined in: events.ts:88


type: "input"

Defined in: events.ts:87