2023-05-23 11:51:32 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Page.setBypassServiceWorker
|
|
|
|
---
|
|
|
|
|
|
|
|
# Page.setBypassServiceWorker() method
|
|
|
|
|
|
|
|
Toggles ignoring of service worker for each request.
|
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Page {
|
2023-11-09 12:57:33 +00:00
|
|
|
abstract setBypassServiceWorker(bypass: boolean): Promise<void>;
|
2023-05-23 11:51:32 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ------- | ------------------------------------------------------- |
|
|
|
|
| bypass | boolean | Whether to bypass service worker and load from network. |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|