2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Keyboard.up
|
|
|
|
---
|
|
|
|
|
|
|
|
# Keyboard.up() method
|
|
|
|
|
|
|
|
Dispatches a `keyup` event.
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Keyboard {
|
2023-09-22 15:22:25 +00:00
|
|
|
abstract up(key: KeyInput): Promise<void>;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
<table><thead><tr><th>
|
2022-07-05 13:41:43 +00:00
|
|
|
|
2024-03-20 15:03:14 +00:00
|
|
|
Parameter
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Type
|
|
|
|
|
|
|
|
</th><th>
|
|
|
|
|
|
|
|
Description
|
|
|
|
|
|
|
|
</th></tr></thead>
|
|
|
|
<tbody><tr><td>
|
|
|
|
|
|
|
|
key
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
[KeyInput](./puppeteer.keyinput.md)
|
|
|
|
|
|
|
|
</td><td>
|
|
|
|
|
|
|
|
Name of key to release, such as `ArrowLeft`. See [KeyInput](./puppeteer.keyinput.md) for a list of all key names.
|
|
|
|
|
|
|
|
</td></tr>
|
|
|
|
</tbody></table>
|
2022-07-05 13:41:43 +00:00
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|