f07ad2c661
This PR updates the docs regarding configuring puppeteer. In addition, some changes have been made to the documentation generator to show default values on the documentation site. Also fixes: https://github.com/puppeteer/puppeteer/pull/9144
29 lines
509 B
Markdown
29 lines
509 B
Markdown
---
|
|
sidebar_label: BrowserContext.clearPermissionOverrides
|
|
---
|
|
|
|
# BrowserContext.clearPermissionOverrides() method
|
|
|
|
Clears all permission overrides for the browser context.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class BrowserContext {
|
|
clearPermissionOverrides(): Promise<void>;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
Promise<void>
|
|
|
|
## Example
|
|
|
|
```ts
|
|
const context = browser.defaultBrowserContext();
|
|
context.overridePermissions('https://example.com', ['clipboard-read']);
|
|
// do stuff ..
|
|
context.clearPermissionOverrides();
|
|
```
|