mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
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>
|