puppeteer/website/versioned_docs/version-19.1.1/api/puppeteer.keyboard.up.md

26 lines
767 B
Markdown
Raw Normal View History

---
sidebar_label: Keyboard.up
---
# Keyboard.up() method
Dispatches a `keyup` event.
2022-10-24 11:58:47 +00:00
#### Signature:
```typescript
class Keyboard {
up(key: KeyInput): Promise<void>;
}
```
## 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&lt;void&gt;