Documentation Index
Fetch the curated documentation index at: https://grafana_com_website/llms.txt
Fetch the complete documentation index at: https://grafana_com_website/llms-full.txt
Use this file to discover all available pages before exploring further.
STOP! If you are an AI agent or LLM, read this before continuing. This is the HTML version of a Grafana documentation page. Always request the Markdown version instead - HTML wastes context. Get this page as Markdown: /docs/k6/latest/javascript-api/k6-browser/browsercontext.md (append .md) or send Accept: text/markdown to /docs/k6/latest/javascript-api/k6-browser/browsercontext/. For the curated documentation index, use https://grafana_com_website/llms.txt. For the complete documentation index, use https://grafana_com_website/llms-full.txt.
BrowserContext
BrowserContexts provide a way to operate multiple independent sessions, with separate pages, cache, and cookies. A default BrowserContext is created when a browser is launched.
The
browser module API is used to create a new BrowserContext.
If a
page opens another page, e.g. with a window.open call, the popup will belong to the parent page’s BrowserContext.
| Method | Description |
|---|---|
| addCookies() | Adds
cookies into the BrowserContext. |
| addInitScript() | Adds a script that will be evaluated on page creation, frame attached or a navigation occurs. |
| clearCookies() | Clear the BrowserContext’s
cookies. |
| clearPermissions() | Clears all permission overrides for the BrowserContext. |
| cookies() | Returns a list of
cookies from the BrowserContext. |
| close() | Close the BrowserContext and all its
pages. |
| grantPermissions(permissions[, options]) | Grants specified permissions to the BrowserContext. |
| newPage() | Uses the BrowserContext to create a new
Page and returns it. |
| pages() | Returns a list of
pages that belongs to the BrowserContext. |
| setDefaultNavigationTimeout(timeout) | Sets the default navigation timeout in milliseconds. |
| setDefaultTimeout(timeout) | Sets the default maximum timeout for all methods accepting a timeout option in milliseconds. |
| setGeolocation(geolocation) | Sets the BrowserContext’s geolocation. |
| setOffline(offline) | Toggles the BrowserContext’s connectivity on/off. |
| waitForEvent(event[, optionsOrPredicate]) | Waits for the event to fire and passes its value into the predicate function. |
Was this page helpful?
Related resources from Grafana Labs

