Menu

This is documentation for the next version of K6. For the latest stable release, go to the latest version.

Open source

down([options])

Dispatches a mousedown event on the mouse’s current position. Mouse’s current position can be changed using mouse.move().

ParameterTypeDescription
optionsobjectOptional.
options.buttonstringThe mouse button to click. Possible values are 'left', 'right', and 'middle'. Default is 'left'.
options.clickCountnumberThe number of times to click. Default is 1.

Returns

TypeDescription
Promise<void>A Promise that fulfills when the mouse down action is complete.