2021-01-07 11:46:05 -08:00
# class: BrowserContext
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
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.
2024-08-26 11:02:41 -07:00
Playwright allows creating isolated non-persistent browser contexts with [`method: Browser.newContext` ] method. Non-persistent browser
2021-01-07 11:46:05 -08:00
contexts don't write any browsing data to disk.
```js
// Create a new incognito browser context
const context = await browser.newContext();
// Create a new page inside context.
const page = await context.newPage();
await page.goto('https://example.com');
// Dispose context once it's no longer needed.
await context.close();
```
2021-02-25 22:03:39 -08:00
```java
// Create a new incognito browser context
BrowserContext context = browser.newContext();
// Create a new page inside context.
Page page = context.newPage();
page.navigate("https://example.com");
2021-05-15 14:02:07 -07:00
// Dispose context once it is no longer needed.
2021-02-25 22:03:39 -08:00
context.close();
```
2021-01-14 07:48:56 -08:00
```python async
# create a new incognito browser context
context = await browser.new_context()
# create a new page inside context.
page = await context.new_page()
await page.goto("https://example.com")
2021-05-15 14:02:07 -07:00
# dispose context once it is no longer needed.
2021-01-14 07:48:56 -08:00
await context.close()
```
```python sync
# create a new incognito browser context
context = browser.new_context()
# create a new page inside context.
page = context.new_page()
page.goto("https://example.com")
2021-05-15 14:02:07 -07:00
# dispose context once it is no longer needed.
2021-01-14 07:48:56 -08:00
context.close()
```
2021-05-13 19:25:16 +02:00
```csharp
using var playwright = await Playwright.CreateAsync();
2023-03-16 17:23:31 +01:00
var browser = await playwright.Firefox.LaunchAsync(new() { Headless = false });
2021-05-13 19:25:16 +02:00
// Create a new incognito browser context
var context = await browser.NewContextAsync();
// Create a new page inside context.
var page = await context.NewPageAsync();
2021-05-13 11:57:02 -07:00
await page.GotoAsync("https://bing.com");
2021-05-15 14:02:07 -07:00
// Dispose context once it is no longer needed.
2021-05-13 19:25:16 +02:00
await context.CloseAsync();
```
2021-04-02 09:47:14 +08:00
## event: BrowserContext.backgroundPage
2022-07-05 16:24:50 -08:00
* since: v1.11
2021-04-02 09:47:14 +08:00
- argument: < [Page]>
:::note
Only works with Chromium browser's persistent context.
:::
Emitted when new background page is created in the context.
2024-04-01 10:54:51 -07:00
```java
2024-04-02 11:32:57 -07:00
context.onBackgroundPage(backgroundPage -> {
System.out.println(backgroundPage.url());
2024-04-01 10:54:51 -07:00
});
```
2021-04-02 09:47:14 +08:00
```js
const backgroundPage = await context.waitForEvent('backgroundpage');
```
```python async
background_page = await context.wait_for_event("backgroundpage")
```
```python sync
background_page = context.wait_for_event("backgroundpage")
```
2024-04-01 10:54:51 -07:00
```csharp
2024-04-04 13:49:15 -07:00
context.BackgroundPage += (_, backgroundPage) =>
2024-04-01 10:54:51 -07:00
{
2024-04-04 13:49:15 -07:00
Console.WriteLine(backgroundPage.Url);
2024-04-02 11:32:57 -07:00
};
2024-04-01 10:54:51 -07:00
```
2024-05-30 09:38:27 -07:00
## property: BrowserContext.clock
* since: v1.45
- type: < [Clock]>
2024-06-06 15:56:13 -07:00
Playwright has ability to mock clock and passage of time.
2024-05-30 09:38:27 -07:00
2021-01-07 11:46:05 -08:00
## event: BrowserContext.close
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-02-25 22:22:47 -08:00
- argument: < [BrowserContext]>
2021-01-07 11:46:05 -08:00
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 [`method: Browser.close` ] method was called.
2023-10-16 20:32:13 -07:00
### option: BrowserContext.close.reason
* since: v1.40
- `reason` < [string]>
The reason to be reported to the operations interrupted by the context closure.
2023-05-04 15:11:46 -07:00
## event: BrowserContext.console
2023-05-26 11:03:31 -07:00
* since: v1.34
2023-05-04 15:11:46 -07:00
* langs:
- alias-java: consoleMessage
- argument: < [ConsoleMessage]>
2024-02-05 21:30:54 +01:00
Emitted when JavaScript within the page calls one of console API methods, e.g. `console.log` or `console.dir` .
2023-05-04 15:11:46 -07:00
The arguments passed into `console.log` and the page are available on the [ConsoleMessage] event handler argument.
**Usage**
```js
context.on('console', async msg => {
const values = [];
for (const arg of msg.args())
values.push(await arg.jsonValue());
console.log(...values);
});
await page.evaluate(() => console.log('hello', 5, { foo: 'bar' }));
```
```java
context.onConsoleMessage(msg -> {
for (int i = 0; i < msg.args ( ) . size ( ) ; + + i )
System.out.println(i + ": " + msg.args().get(i).jsonValue());
});
page.evaluate("() => console.log('hello', 5, { foo: 'bar' })");
```
```python async
async def print_args(msg):
values = []
for arg in msg.args:
values.append(await arg.json_value())
print(values)
context.on("console", print_args)
await page.evaluate("console.log('hello', 5, { foo: 'bar' })")
```
```python sync
def print_args(msg):
for arg in msg.args:
print(arg.json_value())
context.on("console", print_args)
page.evaluate("console.log('hello', 5, { foo: 'bar' })")
```
```csharp
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: BrowserContext.dialog
2023-05-26 11:03:31 -07:00
* since: v1.34
2023-05-04 15:11:46 -07:00
- argument: < [Dialog]>
Emitted when a JavaScript dialog appears, such as `alert` , `prompt` , `confirm` or `beforeunload` . Listener **must** either [`method: Dialog.accept` ] or [`method: Dialog.dismiss` ] the dialog - otherwise the page will [freeze ](https://developer.mozilla.org/en-US/docs/Web/JavaScript/EventLoop#never_blocking ) waiting for the dialog, and actions like click will never finish.
**Usage**
```js
context.on('dialog', dialog => {
dialog.accept();
});
```
```java
context.onDialog(dialog -> {
dialog.accept();
});
```
```python
context.on("dialog", lambda dialog: dialog.accept())
```
```csharp
2024-03-06 17:51:44 +01:00
Context.Dialog += async (_, dialog) =>
{
await dialog.AcceptAsync();
};
2023-05-04 15:11:46 -07:00
```
:::note
When no [`event: Page.dialog` ] or [`event: BrowserContext.dialog` ] listeners are present, all dialogs are automatically dismissed.
:::
2021-01-07 11:46:05 -08:00
## event: BrowserContext.page
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-02-25 22:22:47 -08:00
- argument: < [Page]>
2021-01-07 11:46:05 -08:00
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 [`event: 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
2024-04-04 09:23:21 -07:00
done and its response has started loading in the popup. If you would like to route/listen to this network request, use [`method: BrowserContext.route` ] and [`event: BrowserContext.request` ] respectively instead of similar methods on the [Page].
2021-01-07 11:46:05 -08:00
```js
2022-11-30 12:36:35 -08:00
const newPagePromise = context.waitForEvent('page');
await page.getByText('open new page').click();
const newPage = await newPagePromise;
2021-02-25 22:03:39 -08:00
console.log(await newPage.evaluate('location.href'));
```
```java
Page newPage = context.waitForPage(() -> {
2022-11-30 12:36:35 -08:00
page.getByText("open new page").click();
2021-02-25 22:03:39 -08:00
});
System.out.println(newPage.evaluate("location.href"));
2021-01-07 11:46:05 -08:00
```
2021-01-14 07:48:56 -08:00
```python async
async with context.expect_page() as page_info:
2022-11-30 12:36:35 -08:00
await page.get_by_text("open new page").click(),
2021-01-14 07:48:56 -08:00
page = await page_info.value
print(await page.evaluate("location.href"))
```
```python sync
with context.expect_page() as page_info:
2022-11-30 12:36:35 -08:00
page.get_by_text("open new page").click(),
2021-01-14 07:48:56 -08:00
page = page_info.value
print(page.evaluate("location.href"))
```
2021-05-13 19:25:16 +02:00
```csharp
2021-05-26 15:11:31 -07:00
var popup = await context.RunAndWaitForPageAsync(async =>
2021-05-19 17:19:25 -07:00
{
2022-11-30 12:36:35 -08:00
await page.GetByText("open new page").ClickAsync();
2021-05-19 17:19:25 -07:00
});
2021-05-15 14:02:07 -07:00
Console.WriteLine(await popup.EvaluateAsync< string > ("location.href"));
2021-05-13 19:25:16 +02:00
```
2021-01-12 12:14:27 -08:00
:::note
2021-01-14 07:48:56 -08:00
Use [`method: Page.waitForLoadState` ] to wait until the page gets to a particular state (you should not need it in most
cases).
2021-01-12 12:14:27 -08:00
:::
2021-01-07 11:46:05 -08:00
2023-09-06 12:40:53 -07:00
## event: BrowserContext.webError
2023-08-17 09:10:03 -07:00
* since: v1.38
2023-09-06 12:40:53 -07:00
- argument: < [WebError]>
2023-08-17 09:10:03 -07:00
2023-09-06 12:40:53 -07:00
Emitted when exception is unhandled in any of the pages in this
context. To listen for errors from a particular page, use [`event: Page.pageError` ] instead.
2023-08-17 09:10:03 -07:00
2021-05-13 10:29:14 -07:00
## event: BrowserContext.request
2022-07-05 16:24:50 -08:00
* since: v1.12
2021-05-13 10:29:14 -07:00
- argument: < [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 [`event: Page.request` ].
In order to intercept and mutate requests, see [`method: BrowserContext.route` ]
or [`method: Page.route` ].
## event: BrowserContext.requestFailed
2022-07-05 16:24:50 -08:00
* since: v1.12
2021-05-13 10:29:14 -07:00
- argument: < [Request]>
Emitted when a request fails, for example by timing out. To only listen for
failed requests from a particular page, use [`event: Page.requestFailed` ].
:::note
HTTP Error responses, such as 404 or 503, are still successful responses from HTTP standpoint, so request will complete
with [`event: BrowserContext.requestFinished` ] event and not with [`event: BrowserContext.requestFailed` ].
:::
## event: BrowserContext.requestFinished
2022-07-05 16:24:50 -08:00
* since: v1.12
2021-05-13 10:29:14 -07:00
- argument: < [Request]>
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 [`event: Page.requestFinished` ].
## event: BrowserContext.response
2022-07-05 16:24:50 -08:00
* since: v1.12
2021-05-13 10:29:14 -07:00
- argument: < [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 [`event: Page.response` ].
2021-04-02 09:47:14 +08:00
## event: BrowserContext.serviceWorker
2022-07-05 16:24:50 -08:00
* since: v1.11
2022-07-15 10:57:18 -07:00
* langs: js, python
2021-04-02 09:47:14 +08:00
- argument: < [Worker]>
:::note
Service workers are only supported on Chromium-based browsers.
:::
Emitted when new service worker is created in the context.
2021-01-07 11:46:05 -08:00
## async method: BrowserContext.addCookies
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
Adds cookies into this browser context. All pages within this context will have these cookies installed. Cookies can be
obtained via [`method: BrowserContext.cookies` ].
2022-11-21 10:40:21 -08:00
**Usage**
2021-01-07 11:46:05 -08:00
```js
await browserContext.addCookies([cookieObject1, cookieObject2]);
```
2021-02-25 22:03:39 -08:00
```java
browserContext.addCookies(Arrays.asList(cookieObject1, cookieObject2));
```
2021-01-14 07:48:56 -08:00
```python async
await browser_context.add_cookies([cookie_object1, cookie_object2])
```
```python sync
browser_context.add_cookies([cookie_object1, cookie_object2])
```
2021-05-13 19:25:16 +02:00
```csharp
await context.AddCookiesAsync(new[] { cookie1, cookie2 });
```
2021-01-07 11:46:05 -08:00
### param: BrowserContext.addCookies.cookies
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `cookies` < [Array]< [Object]>>
2021-01-10 18:18:35 -08:00
- `name` < [string]>
- `value` < [string]>
2024-06-26 15:39:43 -07:00
- `url` ?< [string]> Either url or domain / path are required. Optional.
- `domain` ?< [string]> 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]> Either url or domain / path are required Optional.
2022-04-06 19:02:10 -07:00
- `expires` ?< [float]> Unix time in seconds. Optional.
- `httpOnly` ?< [boolean]> Optional.
- `secure` ?< [boolean]> Optional.
- `sameSite` ?< [SameSiteAttribute]< "Strict"|"Lax"|"None">> Optional.
2021-01-07 11:46:05 -08:00
## async method: BrowserContext.addInitScript
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
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.
2021-01-14 07:48:56 -08:00
* 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.
2021-01-07 11:46:05 -08:00
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` .
2022-11-21 10:40:21 -08:00
**Usage**
2021-01-07 11:46:05 -08:00
An example of overriding `Math.random` before the page loads:
2021-01-14 18:19:02 -08:00
```js browser
2021-01-07 11:46:05 -08:00
// preload.js
Math.random = () => 42;
```
```js
// In your playwright script, assuming the preload.js file is in same directory.
await browserContext.addInitScript({
path: 'preload.js'
});
```
2021-02-25 22:03:39 -08:00
```java
// In your playwright script, assuming the preload.js file is in same directory.
browserContext.addInitScript(Paths.get("preload.js"));
```
2021-01-14 07:48:56 -08:00
```python async
# in your playwright script, assuming the preload.js file is in same directory.
await browser_context.add_init_script(path="preload.js")
```
```python sync
# in your playwright script, assuming the preload.js file is in same directory.
browser_context.add_init_script(path="preload.js")
```
2021-05-13 19:25:16 +02:00
```csharp
2024-03-06 17:51:44 +01:00
await Context.AddInitScriptAsync(scriptPath: "preload.js");
2021-05-13 19:25:16 +02:00
```
2021-01-12 12:14:27 -08:00
:::note
The order of evaluation of multiple scripts installed via [`method: BrowserContext.addInitScript` ] and
2021-01-07 11:46:05 -08:00
[`method: Page.addInitScript` ] is not defined.
2021-01-12 12:14:27 -08:00
:::
2021-01-07 11:46:05 -08:00
### param: BrowserContext.addInitScript.script
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-02-12 14:16:38 -08:00
* langs: js
2021-01-07 11:46:05 -08:00
- `script` < [function]|[string]|[Object]>
2022-04-06 19:02:10 -07:00
- `path` ?< [path]> Path to the JavaScript file. If `path` is a relative path, then it is resolved relative to the
2024-08-28 15:39:48 -07:00
current working directory. Optional.
- `content` ?< [string]> Raw script content. Optional.
2021-01-07 11:46:05 -08:00
Script to be evaluated in all pages in the browser context.
2021-02-12 14:16:38 -08:00
### param: BrowserContext.addInitScript.script
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-02-12 14:16:38 -08:00
* langs: csharp, java
- `script` < [string]|[path]>
Script to be evaluated in all pages in the browser context.
2021-01-07 11:46:05 -08:00
### param: BrowserContext.addInitScript.arg
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 16:12:25 -08:00
* langs: js
2022-04-06 19:02:10 -07:00
- `arg` ?< [Serializable]>
2021-01-07 11:46:05 -08:00
2024-08-28 15:39:48 -07:00
Optional argument to pass to [`param: script` ] (only supported when passing a function).
2021-01-07 11:46:05 -08:00
2023-02-09 18:24:32 -08:00
### param: BrowserContext.addInitScript.path
* since: v1.8
* langs: python
- `path` ?< [path]>
Path to the JavaScript file. If `path` is a relative path, then it is resolved relative to the current working directory. Optional.
### param: BrowserContext.addInitScript.script
* since: v1.8
* langs: python
- `script` ?< [string]>
Script to be evaluated in all pages in the browser context. Optional.
2021-04-02 09:47:14 +08:00
## method: BrowserContext.backgroundPages
2022-07-05 16:24:50 -08:00
* since: v1.11
2021-04-02 09:47:14 +08:00
- returns: < [Array]< [Page]>>
:::note
Background pages are only supported on Chromium-based browsers.
:::
All existing background pages in the context.
2021-01-07 11:46:05 -08:00
## method: BrowserContext.browser
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- returns: < [null]|[Browser]>
Returns the browser instance of the context. If it was launched as a persistent context null gets returned.
## async method: BrowserContext.clearCookies
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
2024-03-26 08:12:26 -07:00
Removes cookies from context. Accepts optional filter.
**Usage**
```js
await context.clearCookies();
await context.clearCookies({ name: 'session-id' });
await context.clearCookies({ domain: 'my-origin.com' });
await context.clearCookies({ domain: /.*my-origin\.com/ });
await context.clearCookies({ path: '/api/v1' });
await context.clearCookies({ name: 'session-id', domain: 'my-origin.com' });
```
```java
context.clearCookies();
context.clearCookies(new BrowserContext.ClearCookiesOptions().setName("session-id"));
context.clearCookies(new BrowserContext.ClearCookiesOptions().setDomain("my-origin.com"));
context.clearCookies(new BrowserContext.ClearCookiesOptions().setPath("/api/v1"));
context.clearCookies(new BrowserContext.ClearCookiesOptions()
.setName("session-id")
.setDomain("my-origin.com"));
```
```python async
await context.clear_cookies()
await context.clear_cookies(name="session-id")
await context.clear_cookies(domain="my-origin.com")
await context.clear_cookies(path="/api/v1")
await context.clear_cookies(name="session-id", domain="my-origin.com")
```
```python sync
context.clear_cookies()
context.clear_cookies(name="session-id")
context.clear_cookies(domain="my-origin.com")
context.clear_cookies(path="/api/v1")
context.clear_cookies(name="session-id", domain="my-origin.com")
```
```csharp
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" });
```
### option: BrowserContext.clearCookies.name
* since: v1.43
- `name` < [string]|[RegExp]>
Only removes cookies with the given name.
### option: BrowserContext.clearCookies.domain
* since: v1.43
- `domain` < [string]|[RegExp]>
Only removes cookies with the given domain.
### option: BrowserContext.clearCookies.path
* since: v1.43
- `path` < [string]|[RegExp]>
Only removes cookies with the given path.
2021-01-07 11:46:05 -08:00
## async method: BrowserContext.clearPermissions
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
Clears all permission overrides for the browser context.
2022-11-21 10:40:21 -08:00
**Usage**
2021-01-07 11:46:05 -08:00
```js
const context = await browser.newContext();
await context.grantPermissions(['clipboard-read']);
// do stuff ..
context.clearPermissions();
```
2021-02-25 22:03:39 -08:00
```java
BrowserContext context = browser.newContext();
context.grantPermissions(Arrays.asList("clipboard-read"));
// do stuff ..
context.clearPermissions();
```
2021-01-14 07:48:56 -08:00
```python async
context = await browser.new_context()
await context.grant_permissions(["clipboard-read"])
# do stuff ..
context.clear_permissions()
```
```python sync
context = browser.new_context()
context.grant_permissions(["clipboard-read"])
# do stuff ..
context.clear_permissions()
```
2021-05-13 19:25:16 +02:00
```csharp
var context = await browser.NewContextAsync();
await context.GrantPermissionsAsync(new[] { "clipboard-read" });
2021-08-16 12:49:10 -07:00
// Alternatively, you can use the helper class ContextPermissions
2021-05-13 19:25:16 +02:00
// to specify the permissions...
// do stuff ...
await context.ClearPermissionsAsync();
```
2021-01-07 11:46:05 -08:00
## async method: BrowserContext.close
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
Closes the browser context. All the pages that belong to the browser context will be closed.
2021-01-12 12:14:27 -08:00
:::note
The default browser context cannot be closed.
:::
2021-01-07 11:46:05 -08:00
## async method: BrowserContext.cookies
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- returns: < [Array]< [Object]>>
- `name` < [string]>
- `value` < [string]>
- `domain` < [string]>
- `path` < [string]>
- `expires` < [float]> Unix time in seconds.
- `httpOnly` < [boolean]>
- `secure` < [boolean]>
2021-02-08 11:58:25 -08:00
- `sameSite` < [SameSiteAttribute]< "Strict"|"Lax"|"None">>
2021-01-07 11:46:05 -08:00
If no URLs are specified, this method returns all cookies. If URLs are specified, only cookies that affect those URLs
are returned.
### param: BrowserContext.cookies.urls
2022-07-05 16:24:50 -08:00
* since: v1.8
2022-04-06 19:02:10 -07:00
- `urls` ?< [string]|[Array]< [string]>>
2021-01-07 11:46:05 -08:00
Optional list of URLs.
## async method: BrowserContext.exposeBinding
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
The method adds a function called [`param: name` ] on the `window` object of every frame in every page in the context.
2021-01-14 07:48:56 -08:00
When called, the function executes [`param: callback` ] and returns a [Promise] which resolves to the return value of
[`param: callback` ]. If the [`param: callback` ] returns a [Promise], it will be awaited.
2021-01-07 11:46:05 -08:00
2021-01-14 07:48:56 -08:00
The first argument of the [`param: callback` ] function contains information about the caller: `{ browserContext:
BrowserContext, page: Page, frame: Frame }`.
2021-01-07 11:46:05 -08:00
See [`method: Page.exposeBinding` ] for page-only version.
2022-11-21 10:40:21 -08:00
**Usage**
2021-01-07 11:46:05 -08:00
An example of exposing page URL to all frames in all pages in the context:
```js
const { webkit } = require('playwright'); // Or 'chromium' or 'firefox'.
(async () => {
const browser = await webkit.launch({ headless: false });
const context = await browser.newContext();
await context.exposeBinding('pageURL', ({ page }) => page.url());
const page = await context.newPage();
await page.setContent(`
< script >
async function onClick() {
document.querySelector('div').textContent = await window.pageURL();
}
< / script >
< button onclick = "onClick()" > Click me< / button >
< div > < / div >
`);
2022-10-03 17:02:46 -07:00
await page.getByRole('button').click();
2021-01-07 11:46:05 -08:00
})();
```
2021-02-25 22:03:39 -08:00
```java
import com.microsoft.playwright.*;
public class Example {
public static void main(String[] args) {
try (Playwright playwright = Playwright.create()) {
BrowserType webkit = playwright.webkit()
2021-03-05 13:50:34 -08:00
Browser browser = webkit.launch(new BrowserType.LaunchOptions().setHeadless(false));
2021-02-25 22:03:39 -08:00
BrowserContext context = browser.newContext();
context.exposeBinding("pageURL", (source, args) -> source.page().url());
Page page = context.newPage();
page.setContent("< 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 > ");
2022-11-30 13:46:33 -08:00
page.getByRole(AriaRole.BUTTON).click();
2021-02-25 22:03:39 -08:00
}
}
}
```
2021-01-14 07:48:56 -08:00
```python async
import asyncio
2023-09-13 15:18:15 +02:00
from playwright.async_api import async_playwright, Playwright
2021-01-14 07:48:56 -08:00
2023-09-13 15:18:15 +02:00
async def run(playwright: Playwright):
2021-01-14 07:48:56 -08:00
webkit = playwright.webkit
2023-10-26 21:57:37 +02:00
browser = await webkit.launch(headless=False)
2021-01-14 07:48:56 -08:00
context = await browser.new_context()
await context.expose_binding("pageURL", lambda source: source["page"].url)
page = await context.new_page()
await page.set_content("""
< script >
async function onClick() {
document.querySelector('div').textContent = await window.pageURL();
}
< / script >
< button onclick = "onClick()" > Click me< / button >
< div > < / div >
""")
2022-10-03 17:02:46 -07:00
await page.get_by_role("button").click()
2021-01-14 07:48:56 -08:00
async def main():
async with async_playwright() as playwright:
await run(playwright)
asyncio.run(main())
```
```python sync
2023-09-13 15:18:15 +02:00
from playwright.sync_api import sync_playwright, Playwright
2021-01-14 07:48:56 -08:00
2023-09-13 15:18:15 +02:00
def run(playwright: Playwright):
2021-01-14 07:48:56 -08:00
webkit = playwright.webkit
2023-10-26 21:57:37 +02:00
browser = webkit.launch(headless=False)
2021-01-14 07:48:56 -08:00
context = browser.new_context()
context.expose_binding("pageURL", lambda source: source["page"].url)
page = context.new_page()
page.set_content("""
< script >
async function onClick() {
document.querySelector('div').textContent = await window.pageURL();
}
< / script >
< button onclick = "onClick()" > Click me< / button >
< div > < / div >
""")
2022-10-03 17:02:46 -07:00
page.get_by_role("button").click()
2021-01-14 07:48:56 -08:00
with sync_playwright() as playwright:
run(playwright)
```
2021-05-13 19:25:16 +02:00
```csharp
using Microsoft.Playwright;
2022-04-19 21:23:26 +03:00
using var playwright = await Playwright.CreateAsync();
2023-03-16 17:23:31 +01:00
var browser = await playwright.Webkit.LaunchAsync(new() { Headless = false });
2022-04-19 21:23:26 +03:00
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 > ");
2022-11-30 13:46:33 -08:00
await page.GetByRole(AriaRole.Button).ClickAsync();
2021-05-13 19:25:16 +02:00
```
2021-01-07 11:46:05 -08:00
### param: BrowserContext.exposeBinding.name
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `name` < [string]>
Name of the function on the window object.
### param: BrowserContext.exposeBinding.callback
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `callback` < [function]>
Callback function that will be called in the Playwright's context.
### option: BrowserContext.exposeBinding.handle
2022-07-05 16:24:50 -08:00
* since: v1.8
2024-06-24 11:29:40 -07:00
* deprecated: This option will be removed in the future.
2021-01-07 11:46:05 -08:00
- `handle` < [boolean]>
Whether to pass the argument as a handle, instead of passing by value. When passing a handle, only one argument is
supported. When passing by value, multiple arguments are supported.
## async method: BrowserContext.exposeFunction
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
The method adds a function called [`param: name` ] on the `window` object of every frame in every page in the context.
2021-01-14 07:48:56 -08:00
When called, the function executes [`param: callback` ] and returns a [Promise] which resolves to the return value of
[`param: callback` ].
2021-01-07 11:46:05 -08:00
If the [`param: callback` ] returns a [Promise], it will be awaited.
See [`method: Page.exposeFunction` ] for page-only version.
2022-11-21 10:40:21 -08:00
**Usage**
2021-05-31 15:47:14 -07:00
An example of adding a `sha256` function to all pages in the context:
2021-01-07 11:46:05 -08:00
```js
const { webkit } = require('playwright'); // Or 'chromium' or 'firefox'.
const crypto = require('crypto');
(async () => {
const browser = await webkit.launch({ headless: false });
const context = await browser.newContext();
2023-08-02 11:23:47 +02:00
await context.exposeFunction('sha256', text =>
crypto.createHash('sha256').update(text).digest('hex'),
);
2021-01-07 11:46:05 -08:00
const page = await context.newPage();
await page.setContent(`
< script >
async function onClick() {
2021-05-31 15:47:14 -07:00
document.querySelector('div').textContent = await window.sha256('PLAYWRIGHT');
2021-01-07 11:46:05 -08:00
}
< / script >
< button onclick = "onClick()" > Click me< / button >
< div > < / div >
`);
2022-10-03 17:02:46 -07:00
await page.getByRole('button').click();
2021-01-07 11:46:05 -08:00
})();
```
2021-02-25 22:03:39 -08:00
```java
import com.microsoft.playwright.*;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Base64;
public class Example {
public static void main(String[] args) {
try (Playwright playwright = Playwright.create()) {
BrowserType webkit = playwright.webkit()
2021-03-05 13:50:34 -08:00
Browser browser = webkit.launch(new BrowserType.LaunchOptions().setHeadless(false));
2021-05-31 15:47:14 -07:00
context.exposeFunction("sha256", args -> {
2021-02-25 22:03:39 -08:00
String text = (String) args[0];
MessageDigest crypto;
try {
2021-05-31 15:47:14 -07:00
crypto = MessageDigest.getInstance("SHA-256");
2021-02-25 22:03:39 -08:00
} catch (NoSuchAlgorithmException e) {
return null;
}
byte[] token = crypto.digest(text.getBytes(StandardCharsets.UTF_8));
return Base64.getEncoder().encodeToString(token);
});
Page page = context.newPage();
page.setContent("< script > \n" +
" async function onClick() {\n" +
2021-05-31 15:47:14 -07:00
" document.querySelector('div').textContent = await window.sha256('PLAYWRIGHT');\n" +
2021-02-25 22:03:39 -08:00
" }\n" +
"</ script > \n" +
"< button onclick = \"onClick() \"> Click me</ button > \n" +
"< div ></ div > \n");
2022-11-30 13:46:33 -08:00
page.getByRole(AriaRole.BUTTON).click();
2021-02-25 22:03:39 -08:00
}
}
}
```
2021-01-14 07:48:56 -08:00
```python async
import asyncio
import hashlib
2023-09-13 15:18:15 +02:00
from playwright.async_api import async_playwright, Playwright
2021-01-14 07:48:56 -08:00
2023-09-13 15:18:15 +02:00
def sha256(text: str) -> str:
2021-05-31 15:47:14 -07:00
m = hashlib.sha256()
2021-01-14 07:48:56 -08:00
m.update(bytes(text, "utf8"))
return m.hexdigest()
2023-09-13 15:18:15 +02:00
async def run(playwright: Playwright):
2021-01-14 07:48:56 -08:00
webkit = playwright.webkit
browser = await webkit.launch(headless=False)
context = await browser.new_context()
2021-05-31 15:47:14 -07:00
await context.expose_function("sha256", sha256)
2021-01-14 07:48:56 -08:00
page = await context.new_page()
await page.set_content("""
< script >
async function onClick() {
2021-05-31 15:47:14 -07:00
document.querySelector('div').textContent = await window.sha256('PLAYWRIGHT');
2021-01-14 07:48:56 -08:00
}
< / script >
< button onclick = "onClick()" > Click me< / button >
< div > < / div >
""")
2022-10-03 17:02:46 -07:00
await page.get_by_role("button").click()
2021-01-14 07:48:56 -08:00
async def main():
async with async_playwright() as playwright:
await run(playwright)
asyncio.run(main())
```
```python sync
import hashlib
from playwright.sync_api import sync_playwright
2023-09-13 15:18:15 +02:00
def sha256(text: str) -> str:
2021-05-31 15:47:14 -07:00
m = hashlib.sha256()
2021-01-14 07:48:56 -08:00
m.update(bytes(text, "utf8"))
return m.hexdigest()
2023-09-13 15:18:15 +02:00
def run(playwright: Playwright):
2021-01-14 07:48:56 -08:00
webkit = playwright.webkit
browser = webkit.launch(headless=False)
context = browser.new_context()
2021-05-31 15:47:14 -07:00
context.expose_function("sha256", sha256)
2021-01-14 07:48:56 -08:00
page = context.new_page()
page.set_content("""
< script >
async function onClick() {
2021-05-31 15:47:14 -07:00
document.querySelector('div').textContent = await window.sha256('PLAYWRIGHT');
2021-01-14 07:48:56 -08:00
}
< / script >
< button onclick = "onClick()" > Click me< / button >
< div > < / div >
""")
2022-10-03 17:02:46 -07:00
page.get_by_role("button").click()
2021-01-14 07:48:56 -08:00
with sync_playwright() as playwright:
run(playwright)
```
2021-05-13 19:25:16 +02:00
```csharp
using Microsoft.Playwright;
using System;
using System.Security.Cryptography;
using System.Threading.Tasks;
class BrowserContextExamples
{
2021-05-31 15:47:14 -07:00
public static async Task Main()
2021-05-13 19:25:16 +02:00
{
using var playwright = await Playwright.CreateAsync();
2023-03-16 17:23:31 +01:00
var browser = await playwright.Webkit.LaunchAsync(new() { Headless = false });
2021-05-13 19:25:16 +02:00
var context = await browser.NewContextAsync();
2021-05-31 15:47:14 -07:00
await context.ExposeFunctionAsync("sha256", (string input) =>
2021-05-13 19:25:16 +02:00
{
return Convert.ToBase64String(
2021-05-31 15:47:14 -07:00
SHA256.Create().ComputeHash(System.Text.Encoding.UTF8.GetBytes(input)));
2021-05-13 19:25:16 +02:00
});
var page = await context.NewPageAsync();
await page.SetContentAsync("< script > \n" +
" async function onClick() {\n" +
2021-05-31 15:47:14 -07:00
" document.querySelector('div').textContent = await window.sha256('PLAYWRIGHT');\n" +
2021-05-13 19:25:16 +02:00
" }\n" +
"</ script > \n" +
"< button onclick = \"onClick() \"> Click me</ button > \n" +
"< div > < / div > ");
2022-11-30 13:46:33 -08:00
await page.GetByRole(AriaRole.Button).ClickAsync();
2021-05-13 19:25:16 +02:00
Console.WriteLine(await page.TextContentAsync("div"));
}
}
```
2021-01-07 11:46:05 -08:00
### param: BrowserContext.exposeFunction.name
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `name` < [string]>
Name of the function on the window object.
### param: BrowserContext.exposeFunction.callback
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `callback` < [function]>
Callback function that will be called in the Playwright's context.
## async method: BrowserContext.grantPermissions
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
Grants specified permissions to the browser context. Only grants corresponding permissions to the given origin if
specified.
### param: BrowserContext.grantPermissions.permissions
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `permissions` < [Array]< [string]>>
A permission or an array of permissions to grant. Permissions can be one of the following values:
2021-01-14 07:48:56 -08:00
* `'accelerometer'`
* `'accessibility-events'`
2024-06-11 09:18:45 -07:00
* `'ambient-light-sensor'`
* `'background-sync'`
* `'camera'`
2021-01-14 07:48:56 -08:00
* `'clipboard-read'`
* `'clipboard-write'`
2024-06-11 09:18:45 -07:00
* `'geolocation'`
* `'gyroscope'`
* `'magnetometer'`
* `'microphone'`
* `'midi-sysex'` (system-exclusive midi)
* `'midi'`
* `'notifications'`
2021-01-14 07:48:56 -08:00
* `'payment-handler'`
2024-06-11 09:18:45 -07:00
* `'storage-access'`
2021-01-07 11:46:05 -08:00
### option: BrowserContext.grantPermissions.origin
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `origin` < [string]>
The [origin] to grant permissions to, e.g. "https://example.com".
2021-04-02 09:47:14 +08:00
## async method: BrowserContext.newCDPSession
2022-07-05 16:24:50 -08:00
* since: v1.11
2021-04-02 09:47:14 +08:00
- returns: < [CDPSession]>
:::note
CDP sessions are only supported on Chromium-based browsers.
:::
Returns the newly created session.
### param: BrowserContext.newCDPSession.page
2022-07-05 16:24:50 -08:00
* since: v1.11
2021-08-16 12:49:10 -07:00
- `page` < [Page]|[Frame]>
2021-04-02 09:47:14 +08:00
2021-08-23 13:34:38 -07:00
Target to create new session for. For backwards-compatibility, this parameter is
2021-08-16 12:49:10 -07:00
named `page` , but it can be a `Page` or `Frame` type.
2021-04-02 09:47:14 +08:00
2021-01-07 11:46:05 -08:00
## async method: BrowserContext.newPage
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- returns: < [Page]>
Creates a new page in the browser context.
## method: BrowserContext.pages
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- returns: < [Array]< [Page]>>
2021-02-25 22:22:47 -08:00
Returns all open pages in the context.
2021-01-07 11:46:05 -08:00
2024-08-05 21:14:35 -07:00
## async method: BrowserContext.removeAllListeners
* since: v1.47
2024-08-26 09:29:02 -07:00
* langs: js
2024-08-05 21:14:35 -07:00
2024-08-26 09:29:02 -07:00
Removes all the listeners of the given type (or all registered listeners if no type given).
Allows to wait for async listeners to complete or to ignore subsequent errors from these listeners.
2024-08-05 21:14:35 -07:00
### param: BrowserContext.removeAllListeners.type
* since: v1.47
- `type` ?< [string]>
### option: BrowserContext.removeAllListeners.behavior = %%-remove-all-listeners-options-behavior-%%
* since: v1.47
2021-10-05 13:56:34 -07:00
## property: BrowserContext.request
2022-07-05 16:24:50 -08:00
* since: v1.16
2022-05-23 22:12:57 +03:00
* langs:
- alias-csharp: APIRequest
2021-10-19 07:38:27 -07:00
- type: < [APIRequestContext]>
2021-10-05 13:56:34 -07:00
API testing helper associated with this context. Requests made with this API will use context cookies.
2021-01-07 11:46:05 -08:00
## async method: BrowserContext.route
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
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.
2021-08-24 15:57:35 +02:00
:::note
2022-06-20 19:31:19 -07:00
[`method: BrowserContext.route` ] will not intercept requests intercepted by Service Worker. See [this ](https://github.com/microsoft/playwright/issues/1090 ) issue. We recommend disabling Service Workers when using request interception by setting [`option: Browser.newContext.serviceWorkers` ] to `'block'` .
2021-08-24 15:57:35 +02:00
:::
2022-11-21 10:40:21 -08:00
**Usage**
2021-03-26 18:47:16 +01:00
An example of a naive handler that aborts all image requests:
2021-01-07 11:46:05 -08:00
```js
const context = await browser.newContext();
await context.route('**/*.{png,jpg,jpeg}', route => route.abort());
const page = await context.newPage();
await page.goto('https://example.com');
await browser.close();
```
2021-02-25 22:03:39 -08:00
```java
BrowserContext context = browser.newContext();
context.route("**/*.{png,jpg,jpeg}", route -> route.abort());
Page page = context.newPage();
page.navigate("https://example.com");
browser.close();
```
2021-01-14 07:48:56 -08:00
```python async
context = await browser.new_context()
page = await context.new_page()
await context.route("**/*.{png,jpg,jpeg}", lambda route: route.abort())
await page.goto("https://example.com")
await browser.close()
```
```python sync
context = browser.new_context()
page = context.new_page()
context.route("**/*.{png,jpg,jpeg}", lambda route: route.abort())
page.goto("https://example.com")
browser.close()
```
2021-05-13 19:25:16 +02:00
```csharp
var context = await browser.NewContextAsync();
var page = await context.NewPageAsync();
await context.RouteAsync("**/*.{png,jpg,jpeg}", r => r.AbortAsync());
2021-05-13 11:57:02 -07:00
await page.GotoAsync("https://theverge.com");
2021-05-13 19:25:16 +02:00
await browser.CloseAsync();
```
2021-01-07 11:46:05 -08:00
or the same snippet using a regex pattern instead:
```js
const context = await browser.newContext();
await context.route(/(\.png$)|(\.jpg$)/, route => route.abort());
const page = await context.newPage();
await page.goto('https://example.com');
await browser.close();
```
2021-02-25 22:03:39 -08:00
```java
BrowserContext context = browser.newContext();
context.route(Pattern.compile("(\\.png$)|(\\.jpg$)"), route -> route.abort());
Page page = context.newPage();
page.navigate("https://example.com");
browser.close();
```
2021-01-14 07:48:56 -08:00
```python async
context = await browser.new_context()
page = await context.new_page()
2021-01-15 16:01:41 -08:00
await context.route(re.compile(r"(\.png$)|(\.jpg$)"), lambda route: route.abort())
2021-01-14 11:09:44 -08:00
page = await context.new_page()
2021-01-14 07:48:56 -08:00
await page.goto("https://example.com")
await browser.close()
```
```python sync
context = browser.new_context()
page = context.new_page()
2021-01-15 16:01:41 -08:00
context.route(re.compile(r"(\.png$)|(\.jpg$)"), lambda route: route.abort())
2021-01-14 11:09:44 -08:00
page = await context.new_page()
2021-01-14 07:48:56 -08:00
page = context.new_page()
page.goto("https://example.com")
browser.close()
```
2021-05-13 19:25:16 +02:00
```csharp
var context = await browser.NewContextAsync();
var page = await context.NewPageAsync();
await context.RouteAsync(new Regex("(\\.png$)|(\\.jpg$)"), r => r.AbortAsync());
2021-05-13 11:57:02 -07:00
await page.GotoAsync("https://theverge.com");
2021-05-13 19:25:16 +02:00
await browser.CloseAsync();
```
2021-04-26 08:46:17 -07:00
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:
```js
2024-02-14 17:57:12 +01:00
await context.route('/api/**', async route => {
2021-04-26 08:46:17 -07:00
if (route.request().postData().includes('my-string'))
2024-02-14 17:57:12 +01:00
await route.fulfill({ body: 'mocked-data' });
2021-04-26 08:46:17 -07:00
else
2024-02-14 17:57:12 +01:00
await route.continue();
2021-04-26 08:46:17 -07:00
});
```
```java
context.route("/api/**", route -> {
if (route.request().postData().contains("my-string"))
route.fulfill(new Route.FulfillOptions().setBody("mocked-data"));
else
route.resume();
});
```
```python async
2024-02-14 17:57:12 +01:00
async def handle_route(route: Route):
2023-06-27 11:53:27 +02:00
if ("my-string" in route.request.post_data):
2024-02-14 17:57:12 +01:00
await route.fulfill(body="mocked-data")
2023-06-27 11:53:27 +02:00
else:
2024-02-14 17:57:12 +01:00
await route.continue_()
2021-04-26 08:46:17 -07:00
await context.route("/api/**", handle_route)
```
```python sync
2024-02-14 17:57:12 +01:00
def handle_route(route: Route):
2023-06-27 11:53:27 +02:00
if ("my-string" in route.request.post_data):
2021-04-26 08:46:17 -07:00
route.fulfill(body="mocked-data")
2023-06-27 11:53:27 +02:00
else:
2021-04-26 08:46:17 -07:00
route.continue_()
context.route("/api/**", handle_route)
```
2021-05-13 19:25:16 +02:00
```csharp
await page.RouteAsync("/api/**", async r =>
{
if (r.Request.PostData.Contains("my-string"))
2024-03-06 17:51:44 +01:00
await r.FulfillAsync(new() { Body = "mocked-data" });
2021-05-13 19:25:16 +02:00
else
2021-05-17 20:10:32 -07:00
await r.ContinueAsync();
2021-05-13 19:25:16 +02:00
});
```
2021-01-07 11:46:05 -08:00
Page routes (set up with [`method: Page.route` ]) take precedence over browser context routes when request matches both
handlers.
2021-03-31 18:23:17 +02:00
To remove a route with its handler you can use [`method: BrowserContext.unroute` ].
2021-01-12 12:14:27 -08:00
:::note
Enabling routing disables http cache.
:::
2021-01-07 11:46:05 -08:00
### param: BrowserContext.route.url
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `url` < [string]|[RegExp]|[function]\([URL]\):[boolean]>
A glob pattern, regex pattern or predicate receiving [URL] to match while routing.
2024-09-26 01:08:16 -07:00
When a [`option: Browser.newContext.baseURL` ] via the context options was provided and the passed URL is a path,
2021-07-06 21:16:37 +02:00
it gets merged via the [`new URL()` ](https://developer.mozilla.org/en-US/docs/Web/API/URL/URL ) constructor.
2021-01-07 11:46:05 -08:00
### param: BrowserContext.route.handler
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-02-05 09:39:03 -08:00
* langs: js, python
2023-01-10 18:07:17 +01:00
- `handler` < [function]\([Route], [Request]\): [Promise< any > |any]>
2021-01-07 11:46:05 -08:00
handler function to route the request.
2021-02-05 09:39:03 -08:00
### param: BrowserContext.route.handler
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-02-05 09:39:03 -08:00
* langs: csharp, java
- `handler` < [function]\([Route]\)>
handler function to route the request.
2021-08-24 20:45:50 +02:00
### option: BrowserContext.route.times
2022-07-05 16:24:50 -08:00
* since: v1.15
2021-08-24 20:45:50 +02:00
- `times` < [int]>
How often a route should be used. By default it will be used every time.
2022-06-21 22:12:37 -07:00
## async method: BrowserContext.routeFromHAR
2022-07-05 16:24:50 -08:00
* since: v1.23
2022-06-21 22:12:37 -07:00
2023-07-26 16:15:07 -07:00
If specified the network requests that are made in the context will be served from the HAR file. Read more about [Replaying from HAR ](../mock.md#replaying-from-har ).
2022-06-21 22:12:37 -07:00
Playwright will not serve requests intercepted by Service Worker from the HAR file. See [this ](https://github.com/microsoft/playwright/issues/1090 ) issue. We recommend disabling Service Workers when using request interception by setting [`option: Browser.newContext.serviceWorkers` ] to `'block'` .
### param: BrowserContext.routeFromHAR.har
2022-07-05 16:24:50 -08:00
* since: v1.23
2022-06-21 22:12:37 -07:00
- `har` < [path]>
Path to a [HAR ](http://www.softwareishard.com/blog/har-12-spec ) file with prerecorded network data. If `path` is a relative path, then it is resolved relative to the current working directory.
2022-06-22 12:16:29 -07:00
### option: BrowserContext.routeFromHAR.notFound
2022-07-05 16:24:50 -08:00
* since: v1.23
2022-06-21 22:12:37 -07:00
- `notFound` ?< [HarNotFound]< "abort"|"fallback">>
* If set to 'abort' any request not found in the HAR file will be aborted.
* If set to 'fallback' falls through to the next route handler in the handler chain.
Defaults to abort.
2022-06-28 15:09:36 -07:00
### option: BrowserContext.routeFromHAR.update
2022-07-05 16:24:50 -08:00
* since: v1.23
2022-06-28 15:09:36 -07:00
- `update` ?< boolean >
2022-10-07 11:27:25 -07:00
If specified, updates the given HAR with the actual network information instead of serving from file. The file is written to disk when [`method: BrowserContext.close` ] is called.
2022-06-28 15:09:36 -07:00
2022-06-21 22:12:37 -07:00
### option: BrowserContext.routeFromHAR.url
2022-07-05 16:24:50 -08:00
* since: v1.23
2022-06-28 15:09:36 -07:00
- `url` < [string]|[RegExp]>
2022-06-21 22:12:37 -07:00
2022-06-24 14:06:57 +01:00
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.
2022-06-21 22:12:37 -07:00
2023-03-17 11:49:45 -07:00
### option: BrowserContext.routeFromHAR.updateMode
2023-02-28 01:27:38 +02:00
* since: v1.32
2023-03-17 11:49:45 -07:00
- `updateMode` < [HarMode]< "full"|"minimal">>
2023-02-28 01:27:38 +02:00
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` .
2023-03-17 11:49:45 -07:00
### option: BrowserContext.routeFromHAR.updateContent
2023-02-28 01:27:38 +02:00
* since: v1.32
2023-03-17 11:49:45 -07:00
- `updateContent` < [RouteFromHarUpdateContentPolicy]< "embed"|"attach">>
2023-02-28 01:27:38 +02:00
2023-03-17 11:49:45 -07:00
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.
2023-02-28 01:27:38 +02:00
2024-09-20 03:20:06 -07:00
## async method: BrowserContext.routeWebSocket
* since: v1.48
This method allows to modify websocket connections that are made by any page in the browser context.
Note that only `WebSocket` s 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.
```js
await context.routeWebSocket('/ws', async ws => {
ws.routeSend(message => {
if (message === 'to-be-blocked')
return;
ws.send(message);
});
await ws.connect();
});
```
```java
context.routeWebSocket("/ws", ws -> {
ws.routeSend(message -> {
if ("to-be-blocked".equals(message))
return;
ws.send(message);
});
ws.connect();
});
```
```python async
def message_handler(ws: WebSocketRoute, message: Union[str, bytes]):
if message == "to-be-blocked":
return
ws.send(message)
async def handler(ws: WebSocketRoute):
ws.route_send(lambda message: message_handler(ws, message))
await ws.connect()
await context.route_web_socket("/ws", handler)
```
```python sync
def message_handler(ws: WebSocketRoute, message: Union[str, bytes]):
if message == "to-be-blocked":
return
ws.send(message)
def handler(ws: WebSocketRoute):
ws.route_send(lambda message: message_handler(ws, message))
ws.connect()
context.route_web_socket("/ws", handler)
```
```csharp
await context.RouteWebSocketAsync("/ws", async ws => {
ws.RouteSend(message => {
if (message == "to-be-blocked")
return;
ws.Send(message);
});
await ws.ConnectAsync();
});
```
### param: BrowserContext.routeWebSocket.url
* since: v1.48
- `url` < [string]|[RegExp]|[function]\([URL]\):[boolean]>
2024-09-26 01:08:16 -07:00
Only WebSockets with the url matching this pattern will be routed. A string pattern can be relative to the [`option: Browser.newContext.baseURL` ] context option.
2024-09-20 03:20:06 -07:00
### param: BrowserContext.routeWebSocket.handler
* since: v1.48
* langs: js, python
- `handler` < [function]\([WebSocketRoute]\): [Promise< any > |any]>
Handler function to route the WebSocket.
### param: BrowserContext.routeWebSocket.handler
* since: v1.48
* langs: csharp, java
- `handler` < [function]\([WebSocketRoute]\)>
Handler function to route the WebSocket.
2021-04-02 09:47:14 +08:00
## method: BrowserContext.serviceWorkers
2022-07-05 16:24:50 -08:00
* since: v1.11
2022-07-15 10:57:18 -07:00
* langs: js, python
2021-04-02 09:47:14 +08:00
- returns: < [Array]< [Worker]>>
:::note
Service workers are only supported on Chromium-based browsers.
:::
All existing service workers in the context.
2021-01-07 11:46:05 -08:00
## method: BrowserContext.setDefaultNavigationTimeout
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
This setting will change the default maximum navigation time for the following methods and related shortcuts:
* [`method: Page.goBack` ]
* [`method: Page.goForward` ]
* [`method: Page.goto` ]
* [`method: Page.reload` ]
* [`method: Page.setContent` ]
* [`method: Page.waitForNavigation` ]
2021-01-12 12:14:27 -08:00
:::note
[`method: Page.setDefaultNavigationTimeout` ] and [`method: Page.setDefaultTimeout` ] take priority over
2021-01-07 11:46:05 -08:00
[`method: BrowserContext.setDefaultNavigationTimeout` ].
2021-01-12 12:14:27 -08:00
:::
2021-01-07 11:46:05 -08:00
### param: BrowserContext.setDefaultNavigationTimeout.timeout
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `timeout` < [float]>
Maximum navigation time in milliseconds
## method: BrowserContext.setDefaultTimeout
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
This setting will change the default maximum time for all the methods accepting [`param: timeout` ] option.
2021-01-12 12:14:27 -08:00
:::note
2021-01-14 07:48:56 -08:00
[`method: Page.setDefaultNavigationTimeout` ], [`method: Page.setDefaultTimeout` ] and
[`method: BrowserContext.setDefaultNavigationTimeout` ] take priority over [`method: BrowserContext.setDefaultTimeout` ].
2021-01-12 12:14:27 -08:00
:::
2021-01-07 11:46:05 -08:00
### param: BrowserContext.setDefaultTimeout.timeout
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `timeout` < [float]>
Maximum time in milliseconds
## async method: BrowserContext.setExtraHTTPHeaders
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
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 [`method: Page.setExtraHTTPHeaders` ]. If page overrides a particular
header, page-specific header value will be used instead of the browser context header value.
2021-01-12 12:14:27 -08:00
:::note
[`method: BrowserContext.setExtraHTTPHeaders` ] does not guarantee the order of headers in the outgoing requests.
:::
2021-01-07 11:46:05 -08:00
### param: BrowserContext.setExtraHTTPHeaders.headers
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `headers` < [Object]< [string], [string]>>
An object containing additional HTTP headers to be sent with every request. All header values must be strings.
## async method: BrowserContext.setGeolocation
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
Sets the context's geolocation. Passing `null` or `undefined` emulates position unavailable.
2022-11-21 10:40:21 -08:00
**Usage**
2021-01-07 11:46:05 -08:00
```js
2023-06-27 11:53:53 +02:00
await browserContext.setGeolocation({ latitude: 59.95, longitude: 30.31667 });
2021-01-07 11:46:05 -08:00
```
2021-02-25 22:03:39 -08:00
```java
browserContext.setGeolocation(new Geolocation(59.95, 30.31667));
```
2021-01-14 07:48:56 -08:00
```python async
await browser_context.set_geolocation({"latitude": 59.95, "longitude": 30.31667})
```
```python sync
browser_context.set_geolocation({"latitude": 59.95, "longitude": 30.31667})
```
2021-05-13 19:25:16 +02:00
```csharp
await context.SetGeolocationAsync(new Geolocation()
{
Latitude = 59.95f,
Longitude = 30.31667f
});
```
2021-01-12 12:14:27 -08:00
:::note
2021-01-14 07:48:56 -08:00
Consider using [`method: BrowserContext.grantPermissions` ] to grant permissions for the browser context pages to read
its geolocation.
2021-01-12 12:14:27 -08:00
:::
2021-01-07 11:46:05 -08:00
### param: BrowserContext.setGeolocation.geolocation
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `geolocation` < [null]|[Object]>
2021-01-10 18:18:35 -08:00
- `latitude` < [float]> Latitude between -90 and 90.
- `longitude` < [float]> Longitude between -180 and 180.
2022-04-06 19:02:10 -07:00
- `accuracy` ?< [float]> Non-negative accuracy value. Defaults to `0` .
2021-01-07 11:46:05 -08:00
## async method: BrowserContext.setHTTPCredentials
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-12 12:14:27 -08:00
* langs: js
2022-11-23 08:40:47 -08:00
* deprecated: Browsers may cache credentials after successful authentication. Create a new browser context instead.
2021-01-07 11:46:05 -08:00
### param: BrowserContext.setHTTPCredentials.httpCredentials
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `httpCredentials` < [null]|[Object]>
2021-01-10 18:18:35 -08:00
- `username` < [string]>
- `password` < [string]>
2021-01-07 11:46:05 -08:00
## async method: BrowserContext.setOffline
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
### param: BrowserContext.setOffline.offline
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `offline` < [boolean]>
Whether to emulate network being offline for the browser context.
## async method: BrowserContext.storageState
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- returns: < [Object]>
- `cookies` < [Array]< [Object]>>
- `name` < [string]>
- `value` < [string]>
- `domain` < [string]>
- `path` < [string]>
- `expires` < [float]> Unix time in seconds.
- `httpOnly` < [boolean]>
- `secure` < [boolean]>
2021-02-08 11:58:25 -08:00
- `sameSite` < [SameSiteAttribute]< "Strict"|"Lax"|"None">>
2021-01-07 11:46:05 -08:00
- `origins` < [Array]< [Object]>>
- `origin` < [string]>
- `localStorage` < [Array]< [Object]>>
- `name` < [string]>
- `value` < [string]>
Returns storage state for this browser context, contains current cookies and local storage snapshot.
2021-02-02 17:48:32 -08:00
## async method: BrowserContext.storageState
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-04-08 17:40:34 -07:00
* langs: csharp, java
2021-02-02 17:48:32 -08:00
- returns: < [string]>
2021-09-30 14:14:29 -07:00
### option: BrowserContext.storageState.path = %%-storagestate-option-path-%%
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
2021-05-12 12:21:54 -07:00
## property: BrowserContext.tracing
2022-07-05 16:24:50 -08:00
* since: v1.12
2021-05-12 12:21:54 -07:00
- type: < [Tracing]>
2023-12-14 13:48:17 -08:00
## async method: BrowserContext.unrouteAll
* since: v1.41
Removes all routes created with [`method: BrowserContext.route` ] and [`method: BrowserContext.routeFromHAR` ].
### option: BrowserContext.unrouteAll.behavior = %%-unroute-all-options-behavior-%%
* since: v1.41
2021-01-07 11:46:05 -08:00
## async method: BrowserContext.unroute
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
Removes a route created with [`method: BrowserContext.route` ]. When [`param: handler` ] is not specified, removes all
routes for the [`param: url` ].
### param: BrowserContext.unroute.url
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `url` < [string]|[RegExp]|[function]\([URL]\):[boolean]>
2021-01-14 07:48:56 -08:00
A glob pattern, regex pattern or predicate receiving [URL] used to register a routing with
[`method: BrowserContext.route` ].
2021-01-07 11:46:05 -08:00
### param: BrowserContext.unroute.handler
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-02-05 09:39:03 -08:00
* langs: js, python
2023-01-17 19:14:47 +01:00
- `handler` ?< [function]\([Route], [Request]\): [Promise< any > |any]>
2021-01-07 11:46:05 -08:00
Optional handler function used to register a routing with [`method: BrowserContext.route` ].
2021-02-05 09:39:03 -08:00
### param: BrowserContext.unroute.handler
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-02-05 09:39:03 -08:00
* langs: csharp, java
2022-04-06 19:02:10 -07:00
- `handler` ?< [function]\([Route]\)>
2021-02-05 09:39:03 -08:00
Optional handler function used to register a routing with [`method: BrowserContext.route` ].
2023-03-17 13:02:59 -07:00
## async method: BrowserContext.waitForCondition
* since: v1.32
* langs: java
The method will block until the condition returns true. All Playwright events will
be dispatched while the method is waiting for the condition.
**Usage**
Use the method to wait for a condition that depends on page events:
```java
List< String > failedUrls = new ArrayList< >();
context.onResponse(response -> {
if (!response.ok()) {
failedUrls.add(response.url());
}
});
page1.getByText("Create user").click();
page2.getByText("Submit button").click();
context.waitForCondition(() -> failedUrls.size() > 3);
```
### param: BrowserContext.waitForCondition.condition
* since: v1.32
- `condition` < [BooleanSupplier]>
Condition to wait for.
### option: BrowserContext.waitForCondition.timeout = %%-wait-for-function-timeout-%%
* since: v1.32
2023-05-18 23:47:28 +02:00
## async method: BrowserContext.waitForConsoleMessage
* since: v1.34
* langs: java, python, csharp
- alias-python: expect_console_message
- alias-csharp: RunAndWaitForConsoleMessage
- returns: < [ConsoleMessage]>
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 [`event: BrowserContext.console` ] event is fired.
## async method: BrowserContext.waitForConsoleMessage
* since: v1.34
* langs: python
- returns: < [EventContextManager]< [ConsoleMessage]>>
### param: BrowserContext.waitForConsoleMessage.action = %%-csharp-wait-for-event-action-%%
* since: v1.34
### option: BrowserContext.waitForConsoleMessage.predicate
* since: v1.34
- `predicate` < [function]\([ConsoleMessage]\):[boolean]>
Receives the [ConsoleMessage] object and resolves to truthy value when the waiting should resolve.
### option: BrowserContext.waitForConsoleMessage.timeout = %%-wait-for-event-timeout-%%
* since: v1.34
### param: BrowserContext.waitForConsoleMessage.callback = %%-java-wait-for-event-callback-%%
* since: v1.34
2021-01-07 11:46:05 -08:00
## async method: BrowserContext.waitForEvent
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-05-26 15:11:31 -07:00
* langs: js, python
2021-01-15 16:01:41 -08:00
- alias-python: expect_event
2021-01-07 11:46:05 -08:00
- returns: < [any]>
Waits for event to fire and passes its value into the predicate function. Returns when the predicate returns truthy
value. Will throw an error if the context closes before the event is fired. Returns the event data value.
2022-11-21 10:40:21 -08:00
**Usage**
2021-01-07 11:46:05 -08:00
```js
2022-11-30 12:36:35 -08:00
const pagePromise = context.waitForEvent('page');
await page.getByRole('button').click();
const page = await pagePromise;
2021-01-07 11:46:05 -08:00
```
2021-02-25 22:03:39 -08:00
```java
2022-11-30 12:36:35 -08:00
Page newPage = context.waitForPage(() -> page.getByRole(AriaRole.BUTTON).click());
2021-02-25 22:03:39 -08:00
```
2021-01-14 07:48:56 -08:00
```python async
2021-01-15 16:01:41 -08:00
async with context.expect_event("page") as event_info:
2022-10-03 17:02:46 -07:00
await page.get_by_role("button").click()
2021-01-15 16:01:41 -08:00
page = await event_info.value
2021-01-14 07:48:56 -08:00
```
```python sync
2021-01-15 16:01:41 -08:00
with context.expect_event("page") as event_info:
2022-10-03 17:02:46 -07:00
page.get_by_role("button").click()
2021-01-15 16:01:41 -08:00
page = event_info.value
2021-01-14 07:48:56 -08:00
```
2021-05-13 19:25:16 +02:00
```csharp
2021-05-26 15:11:31 -07:00
var page = await context.RunAndWaitForPageAsync(async () =>
2021-05-19 15:49:44 -07:00
{
2022-11-30 12:36:35 -08:00
await page.GetByRole(AriaRole.Button).ClickAsync();
2021-05-19 15:49:44 -07:00
});
2021-05-13 19:25:16 +02:00
```
2023-02-09 18:24:32 -08:00
## async method: BrowserContext.waitForEvent
* since: v1.8
* langs: python
- returns: < [EventContextManager]>
2021-01-07 11:46:05 -08:00
### param: BrowserContext.waitForEvent.event
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-07 11:46:05 -08:00
- `event` < [string]>
Event name, same one would pass into `browserContext.on(event)` .
### param: BrowserContext.waitForEvent.optionsOrPredicate
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-01-08 15:00:14 -08:00
* langs: js
2022-04-06 19:02:10 -07:00
- `optionsOrPredicate` ?< [function]|[Object]>
2023-03-14 16:34:30 -07:00
- `predicate` < [function]> Receives the event data and resolves to truthy value when the waiting should resolve.
- `timeout` ?< [float]> Maximum time to wait for in milliseconds. Defaults to `0` - no timeout. The default value can be changed via `actionTimeout` option in the config, or by using the [`method: BrowserContext.setDefaultTimeout` ] method.
2021-01-07 11:46:05 -08:00
2021-02-04 21:15:14 -08:00
Either a predicate that receives an event or an options object. Optional.
2023-02-09 18:24:32 -08:00
### option: BrowserContext.waitForEvent.predicate = %%-wait-for-event-predicate-%%
* since: v1.8
### option: BrowserContext.waitForEvent.timeout = %%-wait-for-event-timeout-%%
* since: v1.8
2021-02-04 21:15:14 -08:00
## async method: BrowserContext.waitForPage
2022-07-05 16:24:50 -08:00
* since: v1.9
2021-05-26 15:11:31 -07:00
* langs: java, python, csharp
2021-02-04 21:15:14 -08:00
- alias-python: expect_page
2021-05-26 15:11:31 -07:00
- alias-csharp: RunAndWaitForPage
2021-02-04 21:15:14 -08:00
- returns: < [Page]>
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.
2023-02-09 18:24:32 -08:00
## async method: BrowserContext.waitForPage
* since: v1.9
* langs: python
- returns: < [EventContextManager]< [Page]>>
2023-02-10 15:14:28 -08:00
### param: BrowserContext.waitForPage.action = %%-csharp-wait-for-event-action-%%
* since: v1.12
2023-02-09 18:24:32 -08:00
### option: BrowserContext.waitForPage.predicate
2022-07-05 16:24:50 -08:00
* since: v1.9
2021-02-04 21:15:14 -08:00
* langs: csharp, java, python
2021-02-12 09:19:41 -08:00
- `predicate` < [function]\([Page]\):[boolean]>
2021-02-04 21:15:14 -08:00
Receives the [Page] object and resolves to truthy value when the waiting should resolve.
### option: BrowserContext.waitForPage.timeout = %%-wait-for-event-timeout-%%
2022-07-05 16:24:50 -08:00
* since: v1.9
2021-05-19 15:49:44 -07:00
2023-02-16 11:48:38 -08:00
### param: BrowserContext.waitForPage.callback = %%-java-wait-for-event-callback-%%
* since: v1.9
2021-05-19 15:49:44 -07:00
## async method: BrowserContext.waitForEvent2
2022-07-05 16:24:50 -08:00
* since: v1.8
2021-05-26 15:11:31 -07:00
* langs: python
2021-05-19 15:49:44 -07:00
- alias-python: wait_for_event
- returns: < [any]>
:::note
In most cases, you should use [`method: BrowserContext.waitForEvent` ].
:::
Waits for given `event` to fire. If predicate is provided, it passes
event's value into the `predicate` function and waits for `predicate(event)` to return a truthy value.
Will throw an error if the browser context is closed before the `event` is fired.
### param: BrowserContext.waitForEvent2.event = %%-wait-for-event-event-%%
2022-07-05 16:24:50 -08:00
* since: v1.8
2022-11-21 09:30:32 -08:00
2021-05-19 15:49:44 -07:00
### option: BrowserContext.waitForEvent2.predicate = %%-wait-for-event-predicate-%%
2022-07-05 16:24:50 -08:00
* since: v1.8
2022-11-21 09:30:32 -08:00
2021-05-19 15:49:44 -07:00
### option: BrowserContext.waitForEvent2.timeout = %%-wait-for-event-timeout-%%
2022-07-05 16:24:50 -08:00
* since: v1.8