puppeteer/docs/api/puppeteer.page.setofflinemode.md

28 lines
656 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Page.setOfflineMode
---
# Page.setOfflineMode() method
Sets the network connection to offline.
It does not change the parameters used in [Page.emulateNetworkConditions()](./puppeteer.page.emulatenetworkconditions.md)
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Page {
abstract setOfflineMode(enabled: boolean): Promise<void>;
2022-07-05 13:41:43 +00:00
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ------- | ---------------------------------------------------------- |
| enabled | boolean | When <code>true</code>, enables offline mode for the page. |
**Returns:**
Promise&lt;void&gt;