class: BrowserContext

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 creation of “incognito” browser contexts with browser.newContext() method. “Incognito” browser contexts don’t write any browsing data to disk.

  1. // Create a new incognito browser context
  2. const context = await browser.newContext();
  3. // Create a new page inside context.
  4. const page = await context.newPage();
  5. await page.goto('https://example.com');
  6. // Dispose context once it's no longer needed.
  7. await context.close();

event: ‘close’

Emitted when Browser context gets closed. This might happen because of one of the following:

  • Browser context is closed.
  • Browser application is closed or crashed.
  • The browser.close method was called.

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.on('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.

  1. const [page] = await Promise.all([
  2. context.waitForEvent('page'),
  3. page.click('a[target=_blank]'),
  4. ]);
  5. console.log(await page.evaluate('location.href'));

NOTE Use page.waitForLoadState([state[, options]]) to wait until the page gets to a particular state (you should not need it in most cases).

browserContext.addCookies(cookies)

  • cookies <Array<Object>>
    • name <string> required
    • value <string> required
    • url <string> either url or domain / path are required
    • domain <string> either url or domain / path are required
    • path <string> either url or domain / path are required
    • expires <number> Unix time in seconds.
    • httpOnly <boolean>
    • secure <boolean>
    • sameSite <”Strict”|”Lax”|”None”>
  • returns: <Promise>
  1. await browserContext.addCookies([cookieObject1, cookieObject2]);

browserContext.addInitScript(script[, arg])

Adds a script which would be evaluated in one of the following scenarios:

  • Whenever a page is created in the browser context or is navigated.
  • Whenever a child frame is attached or navigated in any page in the browser context. In this case, the script is evaluated in the context of the newly attached frame.

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.

An example of overriding Math.random before the page loads:

  1. // preload.js
  2. Math.random = () => 42;
  1. // In your playwright script, assuming the preload.js file is in same folder.
  2. await browserContext.addInitScript({
  3. path: 'preload.js'
  4. });

NOTE The order of evaluation of multiple scripts installed via browserContext.addInitScript(script[, arg]) and page.addInitScript(script[, arg]) is not defined.

browserContext.clearCookies()

Clears context cookies.

browserContext.clearPermissions()

Clears all permission overrides for the browser context.

  1. const context = await browser.newContext();
  2. await context.grantPermissions(['clipboard-read']);
  3. // do stuff ..
  4. context.clearPermissions();

browserContext.close()

Closes the browser context. All the pages that belong to the browser context will be closed.

NOTE the default browser context cannot be closed.

browserContext.cookies([urls])

If no URLs are specified, this method returns all cookies. If URLs are specified, only cookies that affect those URLs are returned.

browserContext.exposeBinding(name, playwrightBinding)

  • name <string> Name of the function on the window object.
  • playwrightBinding <function> Callback function that will be called in the Playwright’s context.
  • returns: <Promise>

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 playwrightBinding in Node.js and returns a Promise which resolves to the return value of playwrightBinding. If the playwrightBinding returns a Promise, it will be awaited.

The first argument of the playwrightBinding function contains information about the caller: { browserContext: BrowserContext, page: Page, frame: Frame }.

See page.exposeBinding(name, playwrightBinding) for page-only version.

An example of exposing page URL to all frames in all pages in the context:

  1. const { webkit } = require('playwright'); // Or 'chromium' or 'firefox'.
  2. (async () => {
  3. const browser = await webkit.launch({ headless: false });
  4. const context = await browser.newContext();
  5. await context.exposeBinding('pageURL', ({ page }) => page.url());
  6. const page = await context.newPage();
  7. await page.setContent(`
  8. <script>
  9. async function onClick() {
  10. document.querySelector('div').textContent = await window.pageURL();
  11. }
  12. </script>
  13. <button onclick="onClick()">Click me</button>
  14. <div></div>
  15. `);
  16. await page.click('button');
  17. })();

browserContext.exposeFunction(name, playwrightFunction)

  • name <string> Name of the function on the window object.
  • playwrightFunction <function> Callback function that will be called in the Playwright’s context.
  • returns: <Promise>

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 playwrightFunction in Node.js and returns a Promise which resolves to the return value of playwrightFunction.

If the playwrightFunction returns a Promise, it will be awaited.

See page.exposeFunction(name, playwrightFunction) for page-only version.

An example of adding an md5 function to all pages in the context:

  1. const { webkit } = require('playwright'); // Or 'chromium' or 'firefox'.
  2. const crypto = require('crypto');
  3. (async () => {
  4. const browser = await webkit.launch({ headless: false });
  5. const context = await browser.newContext();
  6. await context.exposeFunction('md5', text => crypto.createHash('md5').update(text).digest('hex'));
  7. const page = await context.newPage();
  8. await page.setContent(`
  9. <script>
  10. async function onClick() {
  11. document.querySelector('div').textContent = await window.md5('PLAYWRIGHT');
  12. }
  13. </script>
  14. <button onclick="onClick()">Click me</button>
  15. <div></div>
  16. `);
  17. await page.click('button');
  18. })();

browserContext.grantPermissions(permissions[][, options])

  • permissions <Array<string>> A permission or an array of permissions to grant. Permissions can be one of the following values:
    • '*'
    • 'geolocation'
    • 'midi'
    • 'midi-sysex' (system-exclusive midi)
    • 'notifications'
    • 'push'
    • 'camera'
    • 'microphone'
    • 'background-sync'
    • 'ambient-light-sensor'
    • 'accelerometer'
    • 'gyroscope'
    • 'magnetometer'
    • 'accessibility-events'
    • 'clipboard-read'
    • 'clipboard-write'
    • 'payment-handler'
  • options <Object>
  • returns: <Promise>

Grants specified permissions to the browser context. Only grants corresponding permissions to the given origin if specified.

browserContext.newPage()

Creates a new page in the browser context.

browserContext.pages()

browserContext.route(url, handler)

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.

An example of a naïve handler that aborts all image requests:

  1. const context = await browser.newContext();
  2. await context.route('**/*.{png,jpg,jpeg}', route => route.abort());
  3. const page = await context.newPage();
  4. await page.goto('https://example.com');
  5. await browser.close();

or the same snippet using a regex pattern instead:

  1. const context = await browser.newContext();
  2. await context.route(/(\.png$)|(\.jpg$)/, route => route.abort());
  3. const page = await context.newPage();
  4. await page.goto('https://example.com');
  5. await browser.close();

Page routes (set up with page.route(url, handler)) take precedence over browser context routes when request matches both handlers.

NOTE Enabling routing disables http cache.

browserContext.setDefaultNavigationTimeout(timeout)

  • timeout <number> Maximum navigation time in milliseconds

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.

browserContext.setDefaultTimeout(timeout)

  • timeout <number> Maximum time in milliseconds

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.

browserContext.setExtraHTTPHeaders(headers)

  • headers <Object<string, string>> An object containing additional HTTP headers to be sent with every request. All header values must be strings.
  • returns: <Promise>

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.setExtraHTTPHeaders(). If page overrides a particular header, page-specific header value will be used instead of the browser context header value.

NOTE browserContext.setExtraHTTPHeaders does not guarantee the order of headers in the outgoing requests.

browserContext.setGeolocation(geolocation)

  • geolocation <?Object>
    • latitude <number> Latitude between -90 and 90. required
    • longitude <number> Longitude between -180 and 180. required
    • accuracy <number> Non-negative accuracy value. Defaults to 0.
  • returns: <Promise>

Sets the context’s geolocation. Passing null or undefined emulates position unavailable.

  1. await browserContext.setGeolocation({latitude: 59.95, longitude: 30.31667});

NOTE Consider using browserContext.grantPermissions to grant permissions for the browser context pages to read its geolocation.

browserContext.setHTTPCredentials(httpCredentials)

Provide credentials for HTTP authentication.

NOTE Browsers may cache credentials that resulted in successful auth. That means passing different credentials after successful authentication or passing null to disable authentication is unreliable. Instead, create a separate browser context that will not have previous credentials cached.

browserContext.setOffline(offline)

  • offline <boolean> Whether to emulate network being offline for the browser context.
  • returns: <Promise>

browserContext.unroute(url[, handler])

Removes a route created with browserContext.route(url, handler). When handler is not specified, removes all routes for the url.

browserContext.waitForEvent(event[, optionsOrPredicate])

  • event <string> Event name, same one would pass into browserContext.on(event).
  • optionsOrPredicate <Function|Object> Either a predicate that receives an event or an options object.
    • predicate <Function> receives the event data and resolves to truthy value when the waiting should resolve.
    • timeout <number> 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(timeout).
  • returns: <Promise<Object>> Promise which resolves to the event data value.

Waits for event to fire and passes its value into the predicate function. Resolves when the predicate returns truthy value. Will throw an error if the context closes before the event is fired.

  1. const context = await browser.newContext();
  2. await context.grantPermissions(['geolocation']);