2021-01-07 11:46:05 -08:00
|
|
|
# class: ChromiumBrowserContext
|
|
|
|
* extends: [BrowserContext]
|
|
|
|
|
|
|
|
Chromium-specific features including background pages, service worker support, etc.
|
|
|
|
|
|
|
|
```js
|
|
|
|
const backgroundPage = await context.waitForEvent('backgroundpage');
|
|
|
|
```
|
|
|
|
|
2021-01-14 07:48:56 -08:00
|
|
|
```python async
|
|
|
|
# FIXME
|
|
|
|
background_page = await context.wait_for_event("backgroundpage")
|
|
|
|
```
|
|
|
|
|
|
|
|
```python sync
|
|
|
|
# FIXME
|
|
|
|
background_page = context.wait_for_event("backgroundpage")
|
|
|
|
```
|
|
|
|
|
2021-01-07 11:46:05 -08:00
|
|
|
## event: ChromiumBrowserContext.backgroundpage
|
|
|
|
- type: <[Page]>
|
|
|
|
|
|
|
|
Emitted when new background page is created in the context.
|
|
|
|
|
2021-01-12 12:14:27 -08:00
|
|
|
:::note
|
|
|
|
Only works with persistent context.
|
|
|
|
:::
|
2021-01-07 11:46:05 -08:00
|
|
|
|
|
|
|
## event: ChromiumBrowserContext.serviceworker
|
|
|
|
- type: <[Worker]>
|
|
|
|
|
|
|
|
Emitted when new service worker is created in the context.
|
|
|
|
|
|
|
|
## method: ChromiumBrowserContext.backgroundPages
|
|
|
|
- returns: <[Array]<[Page]>>
|
|
|
|
|
|
|
|
All existing background pages in the context.
|
|
|
|
|
|
|
|
## async method: ChromiumBrowserContext.newCDPSession
|
|
|
|
- returns: <[CDPSession]>
|
|
|
|
|
|
|
|
Returns the newly created session.
|
|
|
|
|
|
|
|
### param: ChromiumBrowserContext.newCDPSession.page
|
|
|
|
- `page` <[Page]>
|
|
|
|
|
|
|
|
Page to create new session for.
|
|
|
|
|
|
|
|
## method: ChromiumBrowserContext.serviceWorkers
|
|
|
|
- returns: <[Array]<[Worker]>>
|
|
|
|
|
|
|
|
All existing service workers in the context.
|