puppeteer/website/versioned_docs/version-21.4.0/api/puppeteer.page.setbypasscsp.md

30 lines
706 B
Markdown
Raw Normal View History

---
sidebar_label: Page.setBypassCSP
---
# Page.setBypassCSP() method
Toggles bypassing page's Content-Security-Policy.
2022-10-24 14:31:12 +00:00
#### Signature:
```typescript
class Page {
abstract setBypassCSP(enabled: boolean): Promise<void>;
}
```
## Parameters
| Parameter | Type | Description |
| --------- | ------- | ------------------------------------------------- |
| enabled | boolean | sets bypassing of page's Content-Security-Policy. |
**Returns:**
Promise&lt;void&gt;
## Remarks
NOTE: CSP bypassing happens at the moment of CSP initialization rather than evaluation. Usually, this means that `page.setBypassCSP` should be called before navigating to the domain.