2022-08-06 14:49:20 +00:00
---
sidebar_label: Keyboard.up
---
# Keyboard.up() method
Dispatches a `keyup` event.
2022-10-24 14:31:12 +00:00
#### Signature:
2022-08-06 14:49:20 +00:00
```typescript
class Keyboard {
2023-09-22 21:17:39 +00:00
abstract up(key: KeyInput): Promise< void > ;
2022-08-06 14:49:20 +00:00
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ----------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
| key | [KeyInput ](./puppeteer.keyinput.md ) | Name of key to release, such as < code > ArrowLeft</ code > . See [KeyInput ](./puppeteer.keyinput.md ) for a list of all key names. |
**Returns:**
Promise< void>