File: class-browsercontext.md | Updated: 11/18/2025
On this page
BrowserContexts provide a way to operate multiple independent browser sessions.
If a page opens another page, e.g. with a window.open call, the popup will belong to the parent page's browser context.
Playwright allows creating isolated non-persistent browser contexts with Browser.NewContextAsync() method. Non-persistent browser contexts don't write any browsing data to disk.
using var playwright = await Playwright.CreateAsync();var browser = await playwright.Firefox.LaunchAsync(new() { Headless = false });// Create a new incognito browser contextvar context = await browser.NewContextAsync();// Create a new page inside context.var page = await context.NewPageAsync();await page.GotoAsync("https://bing.com");// Dispose context once it is no longer needed.await context.CloseAsync();
Methods
Added before v1.9 browserContext.AddCookiesAsync
Adds cookies into this browser context. All pages within this context will have these cookies installed. Cookies can be obtained via BrowserContext.CookiesAsync() .
Usage
await context.AddCookiesAsync(new[] { cookie1, cookie2 });
Arguments
cookies IEnumerable
<Cookie>#
Name string
Value string
Url string
? (optional)
Either url or domain / path are required. Optional.
Domain string
? (optional)
For the cookie to apply to all subdomains as well, prefix domain with a dot, like this: ".example.com". Either url or domain / path are required. Optional.
Path string
? (optional)
Either url or domain / path are required Optional.
Expires [float]? (optional)
Unix time in seconds. Optional.
HttpOnly bool
? (optional)
Optional.
Secure bool
? (optional)
Optional.
SameSite enum SameSiteAttribute { Strict, Lax, None }? (optional)
Optional.
PartitionKey string
? (optional)
For partitioned third-party cookies (aka CHIPS ), the partition key. Optional.
Returns
Added before v1.9 browserContext.AddInitScriptAsync
Adds a script which would be evaluated in one of the following scenarios:
The script is evaluated after the document was created but before any of its scripts were run. This is useful to amend the JavaScript environment, e.g. to seed Math.random.
Usage
An example of overriding Math.random before the page loads:
// preload.jsMath.random = () => 42;
await Context.AddInitScriptAsync(scriptPath: "preload.js");
note
The order of evaluation of multiple scripts installed via BrowserContext.AddInitScriptAsync() and Page.AddInitScriptAsync() is not defined.
Arguments
Returns
Added before v1.9 browserContext.Browser
Gets the browser instance that owns the context. Returns null if the context is created outside of normal browser, e.g. Android or Electron.
Usage
BrowserContext.Browser
Returns
Added before v1.9 browserContext.ClearCookiesAsync
Removes cookies from context. Accepts optional filter.
Usage
await context.ClearCookiesAsync();await context.ClearCookiesAsync(new() { Name = "session-id" });await context.ClearCookiesAsync(new() { Domain = "my-origin.com" });await context.ClearCookiesAsync(new() { Path = "/api/v1" });await context.ClearCookiesAsync(new() { Name = "session-id", Domain = "my-origin.com" });
Arguments
options BrowserContextClearCookiesOptions? (optional)
Domain|DomainRegex string
? | Regex
? (optional) Added in: v1.43#
Only removes cookies with the given domain.
Name|NameRegex string
? | Regex
? (optional) Added in: v1.43#
Only removes cookies with the given name.
Path|PathRegex string
? | Regex
? (optional) Added in: v1.43#
Only removes cookies with the given path.
Returns
Added before v1.9 browserContext.ClearPermissionsAsync
Clears all permission overrides for the browser context.
Usage
var context = await browser.NewContextAsync();await context.GrantPermissionsAsync(new[] { "clipboard-read" });// Alternatively, you can use the helper class ContextPermissions// to specify the permissions...// do stuff ...await context.ClearPermissionsAsync();
Returns
Added before v1.9 browserContext.CloseAsync
Closes the browser context. All the pages that belong to the browser context will be closed.
note
The default browser context cannot be closed.
Usage
await BrowserContext.CloseAsync(options);
Arguments
options BrowserContextCloseOptions? (optional)
Returns
Added before v1.9 browserContext.CookiesAsync
If no URLs are specified, this method returns all cookies. If URLs are specified, only cookies that affect those URLs are returned.
Usage
await BrowserContext.CookiesAsync(urls);
Arguments
urls string
? | IEnumerable
?<string
> (optional)#
Optional list of URLs.
Returns
BrowserContextCookiesResult>#
Added before v1.9 browserContext.ExposeBindingAsync
The method adds a function called name
on the window object of every frame in every page in the context. When called, the function executes callback
and returns a Promise
which resolves to the return value of callback
. If the callback
returns a Promise
, it will be awaited.
The first argument of the callback
function contains information about the caller: { browserContext: BrowserContext, page: Page, frame: Frame }.
See Page.ExposeBindingAsync() for page-only version.
Usage
An example of exposing page URL to all frames in all pages in the context:
using Microsoft.Playwright;using var playwright = await Playwright.CreateAsync();var browser = await playwright.Webkit.LaunchAsync(new() { Headless = false });var context = await browser.NewContextAsync();await context.ExposeBindingAsync("pageURL", source => source.Page.Url);var page = await context.NewPageAsync();await page.SetContentAsync("<script>\n" +" async function onClick() {\n" +" document.querySelector('div').textContent = await window.pageURL();\n" +" }\n" +"</script>\n" +"<button onclick=\"onClick()\">Click me</button>\n" +"<div></div>");await page.GetByRole(AriaRole.Button).ClickAsync();
Arguments
Name of the function on the window object.
callback Action
<BindingSource, T, [TResult]>#
Callback function that will be called in the Playwright's context.
options BrowserContextExposeBindingOptions? (optional)
Returns
Added before v1.9 browserContext.ExposeFunctionAsync
The method adds a function called name
on the window object of every frame in every page in the context. When called, the function executes callback
and returns a Promise
which resolves to the return value of callback
.
If the callback returns a Promise , it will be awaited.
See Page.ExposeFunctionAsync() for page-only version.
Usage
An example of adding a sha256 function to all pages in the context:
using Microsoft.Playwright;using System;using System.Security.Cryptography;using System.Threading.Tasks;class BrowserContextExamples{ public static async Task Main() { using var playwright = await Playwright.CreateAsync(); var browser = await playwright.Webkit.LaunchAsync(new() { Headless = false }); var context = await browser.NewContextAsync(); await context.ExposeFunctionAsync("sha256", (string input) => { return Convert.ToBase64String( SHA256.Create().ComputeHash(System.Text.Encoding.UTF8.GetBytes(input))); }); var page = await context.NewPageAsync(); await page.SetContentAsync("<script>\n" + " async function onClick() {\n" + " document.querySelector('div').textContent = await window.sha256('PLAYWRIGHT');\n" + " }\n" + "</script>\n" + "<button onclick=\"onClick()\">Click me</button>\n" + "<div></div>"); await page.GetByRole(AriaRole.Button).ClickAsync(); Console.WriteLine(await page.TextContentAsync("div")); }}
Arguments
Name of the function on the window object.
callback Action
<T, [TResult]>#
Callback function that will be called in the Playwright's context.
Returns
Added before v1.9 browserContext.GrantPermissionsAsync
Grants specified permissions to the browser context. Only grants corresponding permissions to the given origin if specified.
Usage
await BrowserContext.GrantPermissionsAsync(permissions, options);
Arguments
permissions IEnumerable
<string
>#
A list of permissions to grant.
danger
Supported permissions differ between browsers, and even between different versions of the same browser. Any permission may stop working after an update.
Here are some permissions that may be supported by some browsers:
'accelerometer''ambient-light-sensor''background-sync''camera''clipboard-read''clipboard-write''geolocation''gyroscope''local-fonts''local-network-access''magnetometer''microphone''midi-sysex' (system-exclusive midi)'midi''notifications''payment-handler''storage-access'options BrowserContextGrantPermissionsOptions? (optional)
The origin to grant permissions to, e.g. "https://example.com ".
Returns
Added in: v1.11 browserContext.NewCDPSessionAsync
note
CDP sessions are only supported on Chromium-based browsers.
Returns the newly created session.
Usage
await BrowserContext.NewCDPSessionAsync(page);
Arguments
Target to create new session for. For backwards-compatibility, this parameter is named page, but it can be a Page or Frame type.
Returns
Added before v1.9 browserContext.NewPageAsync
Creates a new page in the browser context.
Usage
await BrowserContext.NewPageAsync();
Returns
Added before v1.9 browserContext.Pages
Returns all open pages in the context.
Usage
BrowserContext.Pages
Returns
Added before v1.9 browserContext.RouteAsync
Routing provides the capability to modify network requests that are made by any page in the browser context. Once route is enabled, every request matching the url pattern will stall unless it's continued, fulfilled or aborted.
note
BrowserContext.RouteAsync()
will not intercept requests intercepted by Service Worker. See this
issue. We recommend disabling Service Workers when using request interception by setting ServiceWorkers
to 'block'.
Usage
An example of a naive handler that aborts all image requests:
var context = await browser.NewContextAsync();var page = await context.NewPageAsync();await context.RouteAsync("**/*.{png,jpg,jpeg}", r => r.AbortAsync());await page.GotoAsync("https://theverge.com");await browser.CloseAsync();
or the same snippet using a regex pattern instead:
var context = await browser.NewContextAsync();var page = await context.NewPageAsync();await context.RouteAsync(new Regex("(\\.png$)|(\\.jpg$)"), r => r.AbortAsync());await page.GotoAsync("https://theverge.com");await browser.CloseAsync();
It is possible to examine the request to decide the route action. For example, mocking all requests that contain some post data, and leaving all other requests as is:
await page.RouteAsync("/api/**", async r =>{ if (r.Request.PostData.Contains("my-string")) await r.FulfillAsync(new() { Body = "mocked-data" }); else await r.ContinueAsync();});
Page routes (set up with Page.RouteAsync() ) take precedence over browser context routes when request matches both handlers.
To remove a route with its handler you can use BrowserContext.UnrouteAsync() .
note
Enabling routing disables http cache.
Arguments
url string
| Regex
| Func
<string
, bool>#
A glob pattern, regex pattern, or predicate that receives a URL
to match during routing. If BaseURL
is set in the context options and the provided URL is a string that does not start with *, it is resolved using the new URL()
constructor.
handler function to route the request.
options BrowserContextRouteOptions? (optional)
Returns
Added in: v1.23 browserContext.RouteFromHARAsync
If specified the network requests that are made in the context will be served from the HAR file. Read more about Replaying from HAR .
Playwright will not serve requests intercepted by Service Worker from the HAR file. See this
issue. We recommend disabling Service Workers when using request interception by setting ServiceWorkers
to 'block'.
Usage
await BrowserContext.RouteFromHARAsync(har, options);
Arguments
Path to a HAR
file with prerecorded network data. If path is a relative path, then it is resolved relative to the current working directory.
options BrowserContextRouteFromHAROptions? (optional)
NotFound enum HarNotFound { Abort, Fallback }? (optional)#
Defaults to abort.
If specified, updates the given HAR with the actual network information instead of serving from file. The file is written to disk when BrowserContext.CloseAsync() is called.
UpdateContent enum RouteFromHarUpdateContentPolicy { Embed, Attach }? (optional) Added in: v1.32#
Optional setting to control resource content management. If attach is specified, resources are persisted as separate files or entries in the ZIP archive. If embed is specified, content is stored inline the HAR file.
UpdateMode enum HarMode { Full, Minimal }? (optional) Added in: v1.32#
When set to minimal, only record information necessary for routing from HAR. This omits sizes, timing, page, cookies, security and other types of HAR information that are not used when replaying from HAR. Defaults to minimal.
Url|UrlRegex string
? | Regex
? (optional)#
A glob pattern, regular expression or predicate to match the request URL. Only requests with URL matching the pattern will be served from the HAR file. If not specified, all requests are served from the HAR file.
Returns
Added in: v1.48 browserContext.RouteWebSocketAsync
This method allows to modify websocket connections that are made by any page in the browser context.
Note that only WebSockets created after this method was called will be routed. It is recommended to call this method before creating any pages.
Usage
Below is an example of a simple handler that blocks some websocket messages. See WebSocketRoute for more details and examples.
await context.RouteWebSocketAsync("/ws", async ws => { ws.RouteSend(message => { if (message == "to-be-blocked") return; ws.Send(message); }); await ws.ConnectAsync();});
Arguments
url string
| Regex
| Func
<string
, bool>#
Only WebSockets with the url matching this pattern will be routed. A string pattern can be relative to the BaseURL context option.
handler Action
<WebSocketRoute
>#
Handler function to route the WebSocket.
Returns
Added in: v1.34 browserContext.RunAndWaitForConsoleMessageAsync
Performs action and waits for a ConsoleMessage
to be logged by in the pages in the context. If predicate is provided, it passes ConsoleMessage
value into the predicate function and waits for predicate(message) to return a truthy value. Will throw an error if the page is closed before the BrowserContext.Console
event is fired.
Usage
await BrowserContext.RunAndWaitForConsoleMessageAsync(action, options);
Arguments
Action that triggers the event.
options BrowserContextRunAndWaitForConsoleMessageOptions? (optional)
Predicate Func
<ConsoleMessage
?, bool> (optional)#
Receives the ConsoleMessage object and resolves to truthy value when the waiting should resolve.
Timeout [float]? (optional)#
Maximum time to wait for in milliseconds. Defaults to 30000 (30 seconds). Pass 0 to disable timeout. The default value can be changed by using the BrowserContext.SetDefaultTimeout()
.
Returns
Added in: v1.34 browserContext.WaitForConsoleMessageAsync
Performs action and waits for a ConsoleMessage
to be logged by in the pages in the context. If predicate is provided, it passes ConsoleMessage
value into the predicate function and waits for predicate(message) to return a truthy value. Will throw an error if the page is closed before the BrowserContext.Console
event is fired.
Usage
await BrowserContext.WaitForConsoleMessageAsync(action, options);
Arguments
options BrowserContextRunAndWaitForConsoleMessageOptions? (optional)
Predicate Func
<ConsoleMessage
?, bool> (optional)#
Receives the ConsoleMessage object and resolves to truthy value when the waiting should resolve.
Timeout [float]? (optional)#
Maximum time to wait for in milliseconds. Defaults to 30000 (30 seconds). Pass 0 to disable timeout. The default value can be changed by using the BrowserContext.SetDefaultTimeout()
.
Returns
Added in: v1.9 browserContext.RunAndWaitForPageAsync
Performs action and waits for a new Page
to be created in the context. If predicate is provided, it passes Page
value into the predicate function and waits for predicate(event) to return a truthy value. Will throw an error if the context closes before new Page
is created.
Usage
await BrowserContext.RunAndWaitForPageAsync(action, options);
Arguments
action Func
<Task
> Added in: v1.12#
Action that triggers the event.
options BrowserContextRunAndWaitForPageOptions? (optional)
Predicate Func
<Page
?, bool> (optional)#
Receives the Page object and resolves to truthy value when the waiting should resolve.
Timeout [float]? (optional)#
Maximum time to wait for in milliseconds. Defaults to 30000 (30 seconds). Pass 0 to disable timeout. The default value can be changed by using the BrowserContext.SetDefaultTimeout()
.
Returns
Added in: v1.9 browserContext.WaitForPageAsync
Performs action and waits for a new Page
to be created in the context. If predicate is provided, it passes Page
value into the predicate function and waits for predicate(event) to return a truthy value. Will throw an error if the context closes before new Page
is created.
Usage
await BrowserContext.WaitForPageAsync(action, options);
Arguments
options BrowserContextRunAndWaitForPageOptions? (optional)
Predicate Func
<Page
?, bool> (optional)#
Receives the Page object and resolves to truthy value when the waiting should resolve.
Timeout [float]? (optional)#
Maximum time to wait for in milliseconds. Defaults to 30000 (30 seconds). Pass 0 to disable timeout. The default value can be changed by using the BrowserContext.SetDefaultTimeout()
.
Returns
Added before v1.9 browserContext.SetDefaultNavigationTimeout
This setting will change the default maximum navigation time for the following methods and related shortcuts:
note
Page.SetDefaultNavigationTimeout() and Page.SetDefaultTimeout() take priority over BrowserContext.SetDefaultNavigationTimeout() .
Usage
BrowserContext.SetDefaultNavigationTimeout(timeout);
Arguments
timeout [float]#
Maximum navigation time in milliseconds
Added before v1.9 browserContext.SetDefaultTimeout
This setting will change the default maximum time for all the methods accepting timeout option.
note
Page.SetDefaultNavigationTimeout() , Page.SetDefaultTimeout() and BrowserContext.SetDefaultNavigationTimeout() take priority over BrowserContext.SetDefaultTimeout() .
Usage
BrowserContext.SetDefaultTimeout(timeout);
Arguments
timeout [float]#
Maximum time in milliseconds. Pass 0 to disable timeout.
Added before v1.9 browserContext.SetExtraHTTPHeadersAsync
The extra HTTP headers will be sent with every request initiated by any page in the context. These headers are merged with page-specific extra HTTP headers set with Page.SetExtraHTTPHeadersAsync() . If page overrides a particular header, page-specific header value will be used instead of the browser context header value.
note
BrowserContext.SetExtraHTTPHeadersAsync() does not guarantee the order of headers in the outgoing requests.
Usage
await BrowserContext.SetExtraHTTPHeadersAsync(headers);
Arguments
headers IDictionary
<string
, string
>#
An object containing additional HTTP headers to be sent with every request. All header values must be strings.
Returns
Added before v1.9 browserContext.SetGeolocationAsync
Sets the context's geolocation. Passing null or undefined emulates position unavailable.
Usage
await context.SetGeolocationAsync(new Geolocation(){ Latitude = 59.95f, Longitude = 30.31667f});
note
Consider using BrowserContext.GrantPermissionsAsync() to grant permissions for the browser context pages to read its geolocation.
Arguments
geolocation Geolocation?#
Latitude [float]
Latitude between -90 and 90.
Longitude [float]
Longitude between -180 and 180.
Accuracy [float]? (optional)
Non-negative accuracy value. Defaults to 0.
Returns
Added before v1.9 browserContext.SetOfflineAsync
Usage
await BrowserContext.SetOfflineAsync(offline);
Arguments
Returns
Added before v1.9 browserContext.StorageStateAsync
Returns storage state for this browser context, contains current cookies, local storage snapshot and IndexedDB snapshot.
Usage
await BrowserContext.StorageStateAsync(options);
Arguments
options BrowserContextStorageStateOptions? (optional)
IndexedDB bool
? (optional) Added in: v1.51#
Set to true to include IndexedDB
in the storage state snapshot. If your application uses IndexedDB to store authentication tokens, like Firebase Authentication, enable this.
The file path to save the storage state to. If Path is a relative path, then it is resolved relative to current working directory. If no path is provided, storage state is still returned, but won't be saved to the disk.
Returns
Added before v1.9 browserContext.UnrouteAsync
Removes a route created with BrowserContext.RouteAsync() . When handler is not specified, removes all routes for the url .
Usage
await BrowserContext.UnrouteAsync(url, handler);
Arguments
url string
| Regex
| Func
<string
, bool>#
A glob pattern, regex pattern or predicate receiving URL used to register a routing with BrowserContext.RouteAsync() .
handler Action
<Route
?> (optional)#
Optional handler function used to register a routing with BrowserContext.RouteAsync() .
Returns
Added in: v1.41 browserContext.UnrouteAllAsync
Removes all routes created with BrowserContext.RouteAsync() and BrowserContext.RouteFromHARAsync() .
Usage
await BrowserContext.UnrouteAllAsync(options);
Arguments
options BrowserContextUnrouteAllOptions? (optional)
Behavior enum UnrouteBehavior { Wait, IgnoreErrors, Default }? (optional)#
Specifies whether to wait for already running handlers and what to do if they throw errors:
'default' - do not wait for current handler calls (if any) to finish, if unrouted handler throws, it may result in unhandled error'wait' - wait for current handler calls (if any) to finish'ignoreErrors' - do not wait for current handler calls (if any) to finish, all errors thrown by the handlers after unrouting are silently caughtReturns
Properties
Added in: v1.16 browserContext.APIRequest
API testing helper associated with this context. Requests made with this API will use context cookies.
Usage
BrowserContext.APIRequest
Type
Added in: v1.45 browserContext.Clock
Playwright has ability to mock clock and passage of time.
Usage
BrowserContext.Clock
Type
Added in: v1.12 browserContext.Tracing
Usage
BrowserContext.Tracing
Type
Events
Added before v1.9 browserContext.event Close
Emitted when Browser context gets closed. This might happen because of one of the following:
Usage
BrowserContext.Close += async (_, browserContext) => {};
Event data
Added in: v1.34 browserContext.event Console
Emitted when JavaScript within the page calls one of console API methods, e.g. console.log or console.dir.
The arguments passed into console.log and the page are available on the ConsoleMessage
event handler argument.
Usage
context.Console += async (_, msg) =>{ foreach (var arg in msg.Args) Console.WriteLine(await arg.JsonValueAsync<object>());};await page.EvaluateAsync("console.log('hello', 5, { foo: 'bar' })");
Event data
Added in: v1.34 browserContext.event Dialog
Emitted when a JavaScript dialog appears, such as alert, prompt, confirm or beforeunload. Listener must either Dialog.AcceptAsync()
or Dialog.DismissAsync()
the dialog - otherwise the page will freeze
waiting for the dialog, and actions like click will never finish.
Usage
Context.Dialog += async (_, dialog) =>{ await dialog.AcceptAsync();};
note
When no Page.Dialog or BrowserContext.Dialog listeners are present, all dialogs are automatically dismissed.
Event data
Added before v1.9 browserContext.event Page
The event is emitted when a new Page is created in the BrowserContext. The page may still be loading. The event will also fire for popup pages. See also Page.Popup to receive events about popups relevant to a specific page.
The earliest moment that page is available is when it has navigated to the initial url. For example, when opening a popup with window.open('http://example.com'), this event will fire when the network request to "http://example.com
" is done and its response has started loading in the popup. If you would like to route/listen to this network request, use BrowserContext.RouteAsync()
and BrowserContext.Request
respectively instead of similar methods on the Page
.
var popup = await context.RunAndWaitForPageAsync(async =>{ await page.GetByText("open new page").ClickAsync();});Console.WriteLine(await popup.EvaluateAsync<string>("location.href"));
note
Use Page.WaitForLoadStateAsync() to wait until the page gets to a particular state (you should not need it in most cases).
Usage
BrowserContext.Page += async (_, page) => {};
Event data
Added in: v1.12 browserContext.event Request
Emitted when a request is issued from any pages created through this context. The request object is read-only. To only listen for requests from a particular page, use Page.Request .
In order to intercept and mutate requests, see BrowserContext.RouteAsync() or Page.RouteAsync() .
Usage
BrowserContext.Request += async (_, request) => {};
Event data
Added in: v1.12 browserContext.event RequestFailed
Emitted when a request fails, for example by timing out. To only listen for failed requests from a particular page, use Page.RequestFailed .
note
HTTP Error responses, such as 404 or 503, are still successful responses from HTTP standpoint, so request will complete with BrowserContext.RequestFinished event and not with BrowserContext.RequestFailed .
Usage
BrowserContext.RequestFailed += async (_, request) => {};
Event data
Added in: v1.12 browserContext.event RequestFinished
Emitted when a request finishes successfully after downloading the response body. For a successful response, the sequence of events is request, response and requestfinished. To listen for successful requests from a particular page, use Page.RequestFinished
.
Usage
BrowserContext.RequestFinished += async (_, request) => {};
Event data
Added in: v1.12 browserContext.event Response
Emitted when response
status and headers are received for a request. For a successful response, the sequence of events is request, response and requestfinished. To listen for response events from a particular page, use Page.Response
.
Usage
BrowserContext.Response += async (_, response) => {};
Event data
Added in: v1.38 browserContext.event WebError
Emitted when exception is unhandled in any of the pages in this context. To listen for errors from a particular page, use Page.PageError instead.
Usage
BrowserContext.WebError += async (_, webError) => {};
Event data
Deprecated
Added in: v1.11 browserContext.event BackgroundPage
Deprecated
Background pages have been removed from Chromium together with Manifest V2 extensions.
This event is not emitted.
Usage
BrowserContext.BackgroundPage += async (_, page) => {};
Event data
Added in: v1.11 browserContext.BackgroundPages
Deprecated
Background pages have been removed from Chromium together with Manifest V2 extensions.
Returns an empty list.
Usage
BrowserContext.BackgroundPages
Returns