mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
26 lines
551 B
Markdown
26 lines
551 B
Markdown
|
---
|
||
|
sidebar_label: Page.setBypassServiceWorker
|
||
|
---
|
||
|
|
||
|
# Page.setBypassServiceWorker() method
|
||
|
|
||
|
Toggles ignoring of service worker for each request.
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Page {
|
||
|
setBypassServiceWorker(bypass: boolean): Promise<void>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | ------- | ------------------------------------------------------- |
|
||
|
| bypass | boolean | Whether to bypass service worker and load from network. |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<void>
|