Skip to main content
Version: Next

mouseToggleUp

production

Toggles mouse up (Left mouse key/tap).This is equivalent to releasing the pressing mouse left button. Often combined with mouseToggleDown()to automate drag-and-drop.

Example:

await aui.mouseToggleDown().exec();
await aui.moveMouseRelatively(-400,0).exec();
await aui.mouseToggleUp().exec();