puppeteer/docs/api/puppeteer.waitfornetworkidleoptions.md
dependabot[bot] 93e9acc410
chore(deps-dev): Bump the dev-dependencies group with 3 updates (#12101)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nikolay Vitkov <nvitkov@chromium.org>
2024-03-20 15:03:14 +00:00

81 lines
774 B
Markdown

---
sidebar_label: WaitForNetworkIdleOptions
---
# WaitForNetworkIdleOptions interface
#### Signature:
```typescript
export interface WaitForNetworkIdleOptions extends WaitTimeoutOptions
```
**Extends:** [WaitTimeoutOptions](./puppeteer.waittimeoutoptions.md)
## Properties
<table><thead><tr><th>
Property
</th><th>
Modifiers
</th><th>
Type
</th><th>
Description
</th><th>
Default
</th></tr></thead>
<tbody><tr><td>
concurrency
</td><td>
`optional`
</td><td>
number
</td><td>
Maximum number concurrent of network connections to be considered inactive.
</td><td>
`0`
</td></tr>
<tr><td>
idleTime
</td><td>
`optional`
</td><td>
number
</td><td>
Time (in milliseconds) the network should be idle.
</td><td>
`500`
</td></tr>
</tbody></table>