mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
93e9acc410
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>
81 lines
774 B
Markdown
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>
|