Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 649 Bytes

puppeteer.keyboard.up.md

File metadata and controls

24 lines (14 loc) · 649 Bytes

Home > puppeteer > Keyboard > up

Keyboard.up() method

Dispatches a keyup event.

Signature:

up(key: KeyInput): Promise<void>;

Parameters

Parameter Type Description
key KeyInput Name of key to release, such as ArrowLeft. See KeyInput for a list of all key names.

Returns:

Promise<void>