puppeteer/docs/api/puppeteer.keyboard.up.md

49 lines
557 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Keyboard.up
---
# Keyboard.up() method
Dispatches a `keyup` event.
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Keyboard {
abstract up(key: KeyInput): Promise<void>;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
<table><thead><tr><th>
2022-07-05 13:41:43 +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&lt;void&gt;