29 lines
638 B
Markdown
29 lines
638 B
Markdown
---
|
|
sidebar_label: Page.waitForNetworkIdle
|
|
---
|
|
|
|
# Page.waitForNetworkIdle() method
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Page {
|
|
abstract waitForNetworkIdle(options?: {
|
|
idleTime?: number;
|
|
timeout?: number;
|
|
}): Promise<void>;
|
|
}
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --------- | ---------------------------------------- | ---------------------------------------- |
|
|
| options | { idleTime?: number; timeout?: number; } | _(Optional)_ Optional waiting parameters |
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|
|
|
|
Promise which resolves when network is idle
|