2023-05-25 04:52:07 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Page.setBypassServiceWorker
|
|
|
|
---
|
|
|
|
|
|
|
|
# Page.setBypassServiceWorker() method
|
|
|
|
|
|
|
|
Toggles ignoring of service worker for each request.
|
|
|
|
|
|
|
|
#### Signature:
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Page {
|
2023-11-15 10:48:54 +00:00
|
|
|
abstract setBypassServiceWorker(bypass: boolean): Promise<void>;
|
2023-05-25 04:52:07 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ------- | ------------------------------------------------------- |
|
|
|
|
| bypass | boolean | Whether to bypass service worker and load from network. |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|