Actions
session.performActions(actionSequences)
await session.performActions([
{
type: 'none',
id: 'none_id',
actions: [{ type: 'pause', duration: 0 }]
},
{
type: 'pointer',
id: 'click on b field',
actions: [
{ type: 'pause', duration: 0 },
{ type: 'pointerMove', x: 118, y: 121 },
{ type: 'pointerDown', button: 0 },
{ type: 'pointerUp', button: 0 }
]
}
]);session.releaseActions()
ActionSequence
NullActionSequence
PauseAction
KeyActionSequence
KeyAction
KeyDownAction
KeyUpAction
PointerActionSequence
PointerAction
PointerMoveAction
PointerUpAction
PointerDownAction
PointerParameters
NullAction
Key
Last updated