mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
16 lines
229 B
Markdown
16 lines
229 B
Markdown
|
---
|
||
|
sidebar_label: PressOptions.delay
|
||
|
---
|
||
|
|
||
|
# PressOptions.delay property
|
||
|
|
||
|
Time to wait between `keydown` and `keyup` in milliseconds. Defaults to 0.
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
interface PressOptions {
|
||
|
delay?: number;
|
||
|
}
|
||
|
```
|