Back to Puppeteer

BrowserContext.overridePermissions() method

website/versioned_docs/version-24.40.0/api/puppeteer.browsercontext.overridepermissions.md

19.2.21.2 KB
Original Source

BrowserContext.overridePermissions() method

Warning: This API is now obsolete.

in favor of BrowserContext.setPermission().

Grants this browser context the given permissions within the given origin.

Signature

typescript
class BrowserContext {
  abstract overridePermissions(
    origin: string,
    permissions: Permission[],
  ): Promise<void>;
}

Parameters

<table><thead><tr><th>

Parameter

</th><th>

Type

</th><th>

Description

</th></tr></thead> <tbody><tr><td>

origin

</td><td>

string

</td><td>

The origin to grant permissions to, e.g. "https://example.com".

</td></tr> <tr><td>

permissions

</td><td>

Permission[]

</td><td>

An array of permissions to grant. All permissions that are not listed here will be automatically denied.

</td></tr> </tbody></table>

Returns:

Promise<void>

Example

Overriding permissions in the default browser context:

ts
const context = browser.defaultBrowserContext();
await context.overridePermissions('https://html5demos.com', ['geolocation']);