2021-02-09 21:44:16 -08:00
---
id: release-notes
title: "Release notes"
2022-08-09 00:13:57 +02:00
toc_max_heading_level: 2
2021-02-09 21:44:16 -08:00
---
2023-05-02 11:07:33 -07:00
## Version 1.33
### Locators Update
* Use [`method: Locator.or` ] to create a locator that matches either of the two locators.
2023-05-03 14:53:27 +02:00
Consider a scenario where you'd like to click on a "New email" button, but sometimes a security settings dialog shows up instead.
2023-05-02 11:07:33 -07:00
In this case, you can wait for either a "New email" button, or a dialog and act accordingly:
```python
2023-05-03 14:53:27 +02:00
new_email = page.get_by_role("button", name="New email")
dialog = page.get_by_text("Confirm security settings")
expect(new_email.or_(dialog)).is_visible()
2023-05-02 11:07:33 -07:00
if (dialog.is_visible())
2023-05-03 14:53:27 +02:00
page.get_by_role("button", name="Dismiss").click()
new_email.click()
2023-05-02 11:07:33 -07:00
```
* Use new options [`option: hasNot` ] and [`option: hasNotText` ] in [`method: Locator.filter` ]
to find elements that **do not match** certain conditions.
```python
2023-05-03 14:53:27 +02:00
row_locator = page.locator("tr")
row_locator
.filter(has_not_text="text in column 1")
.filter(has_not=page.get_by_role("button", name="column 2 button"))
.screenshot()
2023-05-02 11:07:33 -07:00
```
* Use new web-first assertion [`method: LocatorAssertions.toBeAttached` ] to ensure that the element
is present in the page's DOM. Do not confuse with the [`method: LocatorAssertions.toBeVisible` ] that ensures that
element is both attached & visible.
### New APIs
- [`method: Locator.or` ]
- New option [`option: hasNot` ] in [`method: Locator.filter` ]
- New option [`option: hasNotText` ] in [`method: Locator.filter` ]
- [`method: LocatorAssertions.toBeAttached` ]
- New option [`option: timeout` ] in [`method: Route.fetch` ]
### ⚠️ Breaking change
2023-05-02 13:46:03 -07:00
* The `mcr.microsoft.com/playwright/python:v1.33.0` now serves a Playwright image based on Ubuntu Jammy.
To use the focal-based image, please use `mcr.microsoft.com/playwright/python:v1.33.0-focal` instead.
2023-05-02 11:07:33 -07:00
### Browser Versions
* Chromium 113.0.5672.53
* Mozilla Firefox 112.0
* WebKit 16.4
This version was also tested against the following stable channels:
* Google Chrome 112
* Microsoft Edge 112
2023-03-22 20:05:46 +00:00
## Version 1.32
### New APIs
- Custom expect message, see [test assertions documentation ](./test-assertions.md#custom-expect-message ).
- New options [`option: updateMode` ] and [`option: updateContent` ] in [`method: Page.routeFromHAR` ] and [`method: BrowserContext.routeFromHAR` ].
- Chaining existing locator objects, see [locator docs ](./locators.md#chaining-locators ) for details.
- New option [`option: name` ] in method [`method: Tracing.startChunk` ].
### Browser Versions
* Chromium 112.0.5615.29
* Mozilla Firefox 111.0
* WebKit 16.4
This version was also tested against the following stable channels:
* Google Chrome 111
* Microsoft Edge 111
2023-02-16 18:11:01 -08:00
## Version 1.31
### New APIs
- New assertion [`method: LocatorAssertions.toBeInViewport` ] ensures that locator points to an element that intersects viewport, according to the [intersection observer API ](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API ).
2023-02-17 20:03:22 +01:00
```python
2023-02-16 18:11:01 -08:00
from playwright.sync_api import expect
locator = page.get_by_role("button")
# Make sure at least some part of element intersects viewport.
expect(locator).to_be_in_viewport()
# Make sure element is fully outside of viewport.
expect(locator).not_to_be_in_viewport()
# Make sure that at least half of the element intersects viewport.
expect(locator).to_be_in_viewport(ratio=0.5)
```
### Miscellaneous
- DOM snapshots in trace viewer can be now opened in a separate window.
- New option [`option: Route.fetch.maxRedirects` ] for method [`method: Route.fetch` ].
- Playwright now supports Debian 11 arm64.
- Official [docker images ](./docker.md ) now include Node 18 instead of Node 16.
### Browser Versions
* Chromium 111.0.5563.19
* Mozilla Firefox 109.0
* WebKit 16.4
This version was also tested against the following stable channels:
* Google Chrome 110
* Microsoft Edge 110
2023-01-20 12:56:48 -08:00
## Version 1.30
### Browser Versions
* Chromium 110.0.5481.38
* Mozilla Firefox 108.0.2
* WebKit 16.4
This version was also tested against the following stable channels:
* Google Chrome 109
* Microsoft Edge 109
2022-12-20 20:51:21 +01:00
## Version 1.29
### New APIs
- New method [`method: Route.fetch` ] and new option `json` for [`method: Route.fulfill` ]:
```python
def handle_route(route: Route):
# Fetch original settings.
response = route.fetch()
# Force settings theme to a predefined value.
json = response.json()
json["theme"] = "Solorized"
# Fulfill with modified data.
route.fulfill(json=json)
page.route("**/api/settings", handle_route)
```
- New method [`method: Locator.all` ] to iterate over all matching elements:
```python
# Check all checkboxes!
checkboxes = page.get_by_role("checkbox")
for checkbox in checkboxes.all():
checkbox.check()
```
- [`method: Locator.selectOption` ] matches now by value or label:
```html
< select multiple >
< option value = "red" > Red< / div >
< option value = "green" > Green< / div >
< option value = "blue" > Blue< / div >
< / select >
```
```python
element.select_option("Red")
```
### Miscellaneous
- Option `postData` in method [`method: Route.continue` ] now supports [Serializable] values.
### Browser Versions
* Chromium 109.0.5414.46
* Mozilla Firefox 107.0
* WebKit 16.4
This version was also tested against the following stable channels:
* Google Chrome 108
* Microsoft Edge 108
2022-11-16 13:19:20 -08:00
## Version 1.28
### Playwright Tools
* **Live Locators in CodeGen.** Generate a locator for any element on the page using "Explore" tool.

### New APIs
- [`method: Locator.blur` ]
- [`method: Locator.clear` ]
### Browser Versions
* Chromium 108.0.5359.29
* Mozilla Firefox 106.0
* WebKit 16.4
This version was also tested against the following stable channels:
* Google Chrome 107
* Microsoft Edge 107
2022-10-06 12:51:56 -07:00
## Version 1.27
### Locators
With these new APIs writing locators is a joy:
- [`method: Page.getByText` ] to locate by text content.
- [`method: Page.getByRole` ] to locate by [ARIA role ](https://www.w3.org/TR/wai-aria-1.2/#roles ), [ARIA attributes ](https://www.w3.org/TR/wai-aria-1.2/#aria-attributes ) and [accessible name ](https://w3c.github.io/accname/#dfn-accessible-name ).
- [`method: Page.getByLabel` ] to locate a form control by associated label's text.
2022-10-10 21:18:15 +02:00
- [`method: Page.getByTestId` ] to locate an element based on its `data-testid` attribute (other attribute can be configured).
2022-10-06 12:51:56 -07:00
- [`method: Page.getByPlaceholder` ] to locate an input by placeholder.
- [`method: Page.getByAltText` ] to locate an element, usually image, by its text alternative.
- [`method: Page.getByTitle` ] to locate an element by its title.
```python
page.get_by_label("User Name").fill("John")
page.get_by_label("Password").fill("secret-password")
page.get_by_role("button", name="Sign in").click()
expect(page.get_by_text("Welcome, John!")).to_be_visible()
```
All the same methods are also available on [Locator], [FrameLocator] and [Frame] classes.
### Other highlights
- As announced in v1.25, Ubuntu 18 will not be supported as of Dec 2022. In addition to that, there will be no WebKit updates on Ubuntu 18 starting from the next Playwright release.
### Behavior Changes
- [`method: LocatorAssertions.toHaveAttribute` ] with an empty value does not match missing attribute anymore. For example, the following snippet will succeed when `button` **does not** have a `disabled` attribute.
```js
expect(page.get_by_role("button")).to_have_attribute("disabled", "")
```
### Browser Versions
* Chromium 107.0.5304.18
* Mozilla Firefox 105.0.1
* WebKit 16.0
This version was also tested against the following stable channels:
* Google Chrome 106
* Microsoft Edge 106
2022-09-20 15:49:46 -04:00
## Version 1.26
### Assertions
- New option `enabled` for [`method: LocatorAssertions.toBeEnabled` ].
- [`method: LocatorAssertions.toHaveText` ] now pierces open shadow roots.
- New option `editable` for [`method: LocatorAssertions.toBeEditable` ].
- New option `visible` for [`method: LocatorAssertions.toBeVisible` ].
### Other highlights
- New option `max_redirects` for [`method: APIRequestContext.get` ] and others to limit redirect count.
- Python 3.11 is now supported.
### Behavior Change
A bunch of Playwright APIs already support the `wait_until: "domcontentloaded"` option.
For example:
```python
page.goto("https://playwright.dev", wait_until="domcontentloaded")
```
Prior to 1.26, this would wait for all iframes to fire the `DOMContentLoaded`
2022-10-06 12:51:56 -07:00
event.
2022-09-20 15:49:46 -04:00
To align with web specification, the `'domcontentloaded'` value only waits for
the target frame to fire the `'DOMContentLoaded'` event. Use `wait_until="load"` to wait for all iframes.
2022-09-20 16:08:10 -07:00
### Browser Versions
* Chromium 106.0.5249.30
* Mozilla Firefox 104.0
* WebKit 16.0
This version was also tested against the following stable channels:
* Google Chrome 105
* Microsoft Edge 105
2022-08-15 09:27:33 +02:00
## Version 1.25
### Announcements
2023-04-24 19:48:02 +00:00
* 🎁 We now ship Ubuntu 22.04 Jammy Jellyfish docker image: `mcr.microsoft.com/playwright/python:v1.34.0-jammy` .
2022-08-15 09:27:33 +02:00
* 🪦 This is the last release with macOS 10.15 support (deprecated as of 1.21).
* ⚠️ Ubuntu 18 is now deprecated and will not be supported as of Dec 2022.
### Browser Versions
* Chromium 105.0.5195.19
* Mozilla Firefox 103.0
* WebKit 16.0
This version was also tested against the following stable channels:
* Google Chrome 104
* Microsoft Edge 104
2022-07-22 01:09:01 +02:00
## Version 1.24
2022-08-09 00:13:57 +02:00
< div className = "embed-youtube" >
< iframe width = "560" height = "315" src = "https://www.youtube-nocookie.com/embed/9F05o1shxcY" title = "YouTube video player" frameborder = "0" allow = "accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen > < / iframe >
< / div >
2022-07-22 01:09:01 +02:00
### 🐂 Debian 11 Bullseye Support
Playwright now supports Debian 11 Bullseye on x86_64 for Chromium, Firefox and WebKit. Let us know
if you encounter any issues!
Linux support looks like this:
2022-11-21 11:23:45 -10:00
| | Ubuntu 20.04 | Ubuntu 22.04 | Debian 11
2022-10-06 12:51:56 -07:00
| :--- | :---: | :---: | :---: | :---: |
2022-11-21 11:23:45 -10:00
| Chromium | ✅ | ✅ | ✅ |
| WebKit | ✅ | ✅ | ✅ |
| Firefox | ✅ | ✅ | ✅ |
2022-07-22 01:09:01 +02:00
### New introduction docs
We rewrote our Getting Started docs to be more end-to-end testing focused. Check them out on [playwright.dev ](https://playwright.dev/python/docs/intro ).
2022-06-30 16:42:38 -07:00
## Version 1.23
### Network Replay
Now you can record network traffic into a HAR file and re-use this traffic in your tests.
To record network into HAR file:
```bash
npx playwright open --save-har=github.har.zip https://github.com/microsoft
```
Alternatively, you can record HAR programmatically:
```python async
context = await browser.new_context(record_har_path="github.har.zip")
# ... do stuff ...
await context.close()
```
```python sync
context = browser.new_context(record_har_path="github.har.zip")
# ... do stuff ...
context.close()
```
Use the new methods [`method: Page.routeFromHAR` ] or [`method: BrowserContext.routeFromHAR` ] to serve matching responses from the [HAR ](http://www.softwareishard.com/blog/har-12-spec/ ) file:
```python async
await context.route_from_har("github.har.zip")
```
```python sync
context.route_from_har("github.har.zip")
```
Read more in [our documentation ](./network#record-and-replay-requests ).
### Advanced Routing
You can now use [`method: Route.fallback` ] to defer routing to other handlers.
Consider the following example:
```python async
# Remove a header from all requests
async def remove_header_handler(route: Route) -> None:
headers = await route.request.all_headers()
if "if-none-match" in headers:
del headers["if-none-match"]
await route.fallback(headers=headers)
await page.route("**/*", remove_header_handler)
# Abort all images
async def abort_images_handler(route: Route) -> None:
if route.request.resource_type == "image":
await route.abort()
else:
await route.fallback()
await page.route("**/*", abort_images_handler)
```
```python sync
# Remove a header from all requests
def remove_header_handler(route: Route) -> None:
headers = route.request.all_headers()
if "if-none-match" in headers:
del headers["if-none-match"]
route.fallback(headers=headers)
page.route("**/*", remove_header_handler)
# Abort all images
def abort_images_handler(route: Route) -> None:
if route.request.resource_type == "image":
route.abort()
else:
route.fallback()
page.route("**/*", abort_images_handler)
```
Note that the new methods [`method: Page.routeFromHAR` ] and [`method: BrowserContext.routeFromHAR` ] also participate in routing and could be deferred to.
### Web-First Assertions Update
* New method [`method: LocatorAssertions.toHaveValues` ] that asserts all selected values of `<select multiple>` element.
* Methods [`method: LocatorAssertions.toContainText` ] and [`method: LocatorAssertions.toHaveText` ] now accept `ignore_case` option.
### Miscellaneous
* If there's a service worker that's in your way, you can now easily disable it with a new context option `service_workers` :
```python async
context = await browser.new_context(service_workers="block")
page = await context.new_page()
```
```python sync
context = browser.new_context(service_workers="block")
page = context.new_page()
```
* Using `.zip` path for `recordHar` context option automatically zips the resulting HAR:
```python async
context = await browser.new_context(record_har_path="github.har.zip")
```
```python sync
context = browser.new_context(record_har_path="github.har.zip")
```
* If you intend to edit HAR by hand, consider using the `"minimal"` HAR recording mode
that only records information that is essential for replaying:
```python async
context = await browser.new_context(record_har_mode="minimal", record_har_path="har.har")
```
```python sync
context = browser.new_context(record_har_mode="minimal", record_har_path="har.har")
```
2022-07-01 14:57:04 +02:00
* Playwright now runs on Ubuntu 22 amd64 and Ubuntu 22 arm64.
2022-06-30 16:42:38 -07:00
2022-05-12 12:07:55 -06:00
## Version 1.22
### Highlights
- Role selectors that allow selecting elements by their [ARIA role ](https://www.w3.org/TR/wai-aria-1.2/#roles ), [ARIA attributes ](https://www.w3.org/TR/wai-aria-1.2/#aria-attributes ) and [accessible name ](https://w3c.github.io/accname/#dfn-accessible-name ).
```py
# Click a button with accessible name "log in"
2022-07-13 11:50:18 +02:00
page.locator("role=button[name='log in']").click()
2022-05-12 12:07:55 -06:00
```
2022-12-02 21:48:37 -08:00
Read more in [our documentation ](./locators.md#locate-by-role ).
2022-05-12 12:07:55 -06:00
2023-03-30 14:41:30 -07:00
- New [`method: Locator.filter` ] API to filter an existing locator
2022-05-12 12:07:55 -06:00
```py
buttons = page.locator("role=button")
# ...
submit_button = buttons.filter(has_text="Submit")
submit_button.click()
```
- Codegen now supports generating Pytest Tests

2022-04-11 17:53:57 -06:00
## Version 1.21
### Highlights
2022-05-02 10:32:50 -06:00
- New role selectors that allow selecting elements by their [ARIA role ](https://www.w3.org/TR/wai-aria-1.2/#roles ), [ARIA attributes ](https://www.w3.org/TR/wai-aria-1.2/#aria-attributes ) and [accessible name ](https://w3c.github.io/accname/#dfn-accessible-name ).
2022-04-11 17:53:57 -06:00
```python async
# Click a button with accessible name "log in"
2022-07-13 11:50:18 +02:00
await page.locator("role=button[name='log in']").click()
2022-04-11 17:53:57 -06:00
```
```python sync
# Click a button with accessible name "log in"
2022-07-13 11:50:18 +02:00
page.locator("role=button[name='log in']").click()
2022-04-11 17:53:57 -06:00
```
2022-12-02 21:48:37 -08:00
Read more in [our documentation ](./locators.md#locate-by-role ).
2022-04-11 17:53:57 -06:00
- New `scale` option in [`method: Page.screenshot` ] for smaller sized screenshots.
- New `caret` option in [`method: Page.screenshot` ] to control text caret. Defaults to `"hide"` .
### Behavior Changes
- The `mcr.microsoft.com/playwright` docker image no longer contains Python. Please use `mcr.microsoft.com/playwright/python`
as a Playwright-ready docker image with pre-installed Python.
- Playwright now supports large file uploads (100s of MBs) via [`method: Locator.setInputFiles` ] API.
### Browser Versions
- Chromium 101.0.4951.26
- Mozilla Firefox 98.0.2
- WebKit 15.4
This version was also tested against the following stable channels:
- Google Chrome 100
- Microsoft Edge 100
2022-03-14 11:52:52 -06:00
## Version 1.20
### Highlights
- New options for methods [`method: Page.screenshot` ], [`method: Locator.screenshot` ] and [`method: ElementHandle.screenshot` ]:
* Option `animations: "disabled"` rewinds all CSS animations and transitions to a consistent state
* Option `mask: Locator[]` masks given elements, overlaying them with pink `#FF00FF` boxes.
2022-03-14 20:25:26 +01:00
- [Trace Viewer ](./trace-viewer ) now shows [API testing requests ](./api-testing ).
2022-03-14 11:52:52 -06:00
- [`method: Locator.highlight` ] visually reveals element(s) for easier debugging.
### Announcements
- We now ship a designated Python docker image `mcr.microsoft.com/playwright/python` . Please switch over to it if you use
Python. This is the last release that includes Python inside our javascript `mcr.microsoft.com/playwright` docker image.
- v1.20 is the last release to receive WebKit update for macOS 10.15 Catalina. Please update MacOS to keep using latest & greatest WebKit!
### Browser Versions
- Chromium 101.0.4921.0
- Mozilla Firefox 97.0.1
- WebKit 15.4
This version was also tested against the following stable channels:
- Google Chrome 99
- Microsoft Edge 99
2022-02-11 12:24:14 -07:00
## Version 1.19
### Highlights
- Locator now supports a `has` option that makes sure it contains another locator inside:
```python async
await page.locator("article", has=page.locator(".highlight")).click()
```
```python sync
page.locator("article", has=page.locator(".highlight")).click()
```
Read more in [locator documentation ](./api/class-locator#locator-locator-option-has )
- New [`method: Locator.page` ]
- [`method: Page.screenshot` ] and [`method: Locator.screenshot` ] now automatically hide blinking caret
- Playwright Codegen now generates locators and frame locators
### Browser Versions
- Chromium 100.0.4863.0
- Mozilla Firefox 96.0.1
- WebKit 15.4
This version was also tested against the following stable channels:
- Google Chrome 98
- Microsoft Edge 98
2022-01-19 08:30:03 -07:00
## Version 1.18
### API Testing
Playwright for Python 1.18 introduces new [API Testing ](./api/class-apirequestcontext ) that lets you send requests to the server directly from Python!
Now you can:
- test your server API
- prepare server side state before visiting the web application in a test
- validate server side post-conditions after running some actions in the browser
To do a request on behalf of Playwright's Page, use **new [`property: Page.request`] API** :
```python async
# Do a GET request on behalf of page
res = await page.request.get("http://example.com/foo.json")
```
```python sync
# Do a GET request on behalf of page
res = page.request.get("http://example.com/foo.json")
```
Read more in [our documentation ](./api/class-apirequestcontext ).
### Web-First Assertions
2022-03-11 08:28:06 -08:00
Playwright for Python 1.18 introduces [Web-First Assertions ](./test-assertions ).
2022-01-19 08:30:03 -07:00
Consider the following example:
```python async
from playwright.async_api import Page, expect
async def test_status_becomes_submitted(page: Page) -> None:
# ..
2022-07-13 11:50:18 +02:00
await page.locator("#submit -button").click()
2022-01-19 08:30:03 -07:00
await expect(page.locator(".status")).to_have_text("Submitted")
```
```python sync
from playwright.sync_api import Page, expect
def test_status_becomes_submitted(page: Page) -> None:
# ..
2022-07-13 11:50:18 +02:00
page.locator("#submit -button").click()
2022-01-19 08:30:03 -07:00
expect(page.locator(".status")).to_have_text("Submitted")
```
Playwright will be re-testing the node with the selector `.status` until
fetched Node has the `"Submitted"` text. It will be re-fetching the node and
checking it over and over, until the condition is met or until the timeout is
reached. You can pass this timeout as an option.
2022-03-11 08:28:06 -08:00
Read more in [our documentation ](./test-assertions ).
2022-01-19 08:30:03 -07:00
### Locator Improvements
- [`method: Locator.dragTo` ]
- Each locator can now be optionally filtered by the text it contains:
```python async
2022-01-20 13:36:41 +01:00
await page.locator("li", has_text="my item").locator("button").click()
2022-01-19 08:30:03 -07:00
```
```python sync
2022-01-20 13:36:41 +01:00
page.locator("li", has_text="my item").locator("button").click()
2022-01-19 08:30:03 -07:00
```
Read more in [locator documentation ](./api/class-locator#locator-locator-option-has-text )
### New APIs & changes
- [`accept_downloads` ](./api/class-browser#browser-new-context-option-accept-downloads ) option now defaults to `True` .
- [`sources` ](./api/class-tracing#tracing-start-option-sources ) option to embed sources into traces.
### Browser Versions
- Chromium 99.0.4812.0
- Mozilla Firefox 95.0
- WebKit 15.4
This version was also tested against the following stable channels:
- Google Chrome 97
- Microsoft Edge 97
2021-11-18 15:08:49 -08:00
## Version 1.17
### Frame Locators
Playwright 1.17 introduces [frame locators ](./api/class-framelocator ) - a locator to the iframe on the page. Frame locators capture the logic sufficient to retrieve the `iframe` and then locate elements in that iframe. Frame locators are strict by default, will wait for `iframe` to appear and can be used in Web-First assertions.

Frame locators can be created with either [`method: Page.frameLocator` ] or [`method: Locator.frameLocator` ] method.
```python
locator = page.frame_locator("my-frame").locator("text=Submit")
locator.click()
```
Read more at [our documentation ](./api/class-framelocator ).
### Trace Viewer Update
Playwright Trace Viewer is now **available online** at https://trace.playwright.dev! Just drag-and-drop your `trace.zip` file to inspect its contents.
> **NOTE**: trace files are not uploaded anywhere; [trace.playwright.dev](https://trace.playwright.dev) is a [progressive web application](https://web.dev/progressive-web-apps/) that processes traces locally.
- Playwright Test traces now include sources by default (these could be turned off with tracing option)
- Trace Viewer now shows test name
- New trace metadata tab with browser details
- Snapshots now have URL bar

### HTML Report Update
- HTML report now supports dynamic filtering
- Report is now a **single static HTML file** that could be sent by e-mail or as a slack attachment.

### Ubuntu ARM64 support + more
- Playwright now supports **Ubuntu 20.04 ARM64** . You can now run Playwright tests inside Docker on Apple M1 and on Raspberry Pi.
- You can now use Playwright to install stable version of Edge on Linux:
```bash
npx playwright install msedge
```
### New APIs
- Tracing now supports a [`'title'` ](./api/class-tracing#tracing-start-option-title ) option
- Page navigations support a new [`'commit'` ](./api/class-page#page-goto ) waiting option
2021-10-21 11:13:19 -07:00
## Version 1.16
### 🎭 Playwright Library
#### `locator.wait_for`
Wait for a locator to resolve to a single element with a given state.
Defaults to the `state: 'visible'` .
Comes especially handy when working with lists:
```python
order_sent = page.locator("#order -sent")
order_sent.wait_for()
```
Read more about [`method: Locator.waitFor` ].
### Docker support for Arm64
Playwright Docker image is now published for Arm64 so it can be used on Apple Silicon.
Read more about [Docker integration ](./docker ).
### 🎭 Playwright Trace Viewer
- run trace viewer with `npx playwright show-trace` and drop trace files to the trace viewer PWA
- better visual attribution of action targets
Read more about [Trace Viewer ](./trace-viewer ).
### Browser Versions
- Chromium 97.0.4666.0
- Mozilla Firefox 93.0
- WebKit 15.4
This version of Playwright was also tested against the following stable channels:
- Google Chrome 94
- Microsoft Edge 94
2021-09-21 22:04:53 +02:00
## Version 1.15
### 🖱️ Mouse Wheel
By using [`Page.mouse.wheel` ](https://playwright.dev/python/docs/api/class-mouse#mouse-wheel ) you are now able to scroll vertically or horizontally.
### 📜 New Headers API
Previously it was not possible to get multiple header values of a response. This is now possible and additional helper functions are available:
- [Request.all_headers() ](https://playwright.dev/python/docs/api/class-request#request-all-headers )
- [Request.headers_array() ](https://playwright.dev/python/docs/api/class-request#request-headers-array )
- [Request.header_value(name: str) ](https://playwright.dev/python/docs/api/class-request#request-header-value )
- [Response.all_headers() ](https://playwright.dev/python/docs/api/class-response#response-all-headers )
- [Response.headers_array() ](https://playwright.dev/python/docs/api/class-response#response-headers-array )
- [Response.header_value(name: str) ](https://playwright.dev/python/docs/api/class-response#response-header-value )
2022-03-25 19:30:45 +01:00
- [Response.header_values(name: str) ](https://playwright.dev/python/docs/api/class-response#response-header-values )
2021-09-21 22:04:53 +02:00
### 🌈 Forced-Colors emulation
Its now possible to emulate the `forced-colors` CSS media feature by passing it in the [context options ](https://playwright.dev/python/docs/api/class-browser#browser-new-context-option-forced-colors ) or calling [Page.emulate_media() ](https://playwright.dev/python/docs/api/class-page#page-emulate-media ).
### New APIs
- [Page.route() ](https://playwright.dev/python/docs/api/class-page#page-route ) accepts new `times` option to specify how many times this route should be matched.
- [Page.set_checked(selector: str, checked: bool) ](https://playwright.dev/python/docs/api/class-page#page-set-checked ) and [Locator.set_checked(selector: str, checked: bool) ](https://playwright.dev/python/docs/api/class-locator#locator-set-checked ) was introduced to set the checked state of a checkbox.
- [Request.sizes() ](https://playwright.dev/python/docs/api/class-request#request-sizes ) Returns resource size information for given http request.
- [BrowserContext.tracing.start_chunk() ](https://playwright.dev/python/docs/api/class-tracing#tracing-start-chunk ) - Start a new trace chunk.
- [BrowserContext.tracing.stop_chunk() ](https://playwright.dev/python/docs/api/class-tracing#tracing-stop-chunk ) - Stops a new trace chunk.
### Browser Versions
- Chromium 96.0.4641.0
- Mozilla Firefox 92.0
- WebKit 15.0
2021-08-13 15:02:24 -07:00
## Version 1.14
#### ⚡️ New "strict" mode
Selector ambiguity is a common problem in automation testing. ** "strict" mode**
ensures that your selector points to a single element and throws otherwise.
Pass `strict=true` into your action calls to opt in.
```py
# This will throw if you have more than one button!
2022-07-13 11:50:18 +02:00
page.click("button", strict=True)
2021-08-13 15:02:24 -07:00
```
2021-08-14 01:39:05 +03:00
#### 📍 New [**Locators API**](./api/class-locator)
2021-08-13 15:02:24 -07:00
Locator represents a view to the element(s) on the page. It captures the logic sufficient to retrieve the element at any given moment.
2021-08-14 01:39:05 +03:00
The difference between the [Locator ](./api/class-locator ) and [ElementHandle ](./api/class-elementhandle ) is that the latter points to a particular element, while [Locator ](./api/class-locator ) captures the logic of how to retrieve that element.
2021-08-13 15:02:24 -07:00
Also, locators are ** "strict" by default**!
```py
locator = page.locator("button")
locator.click()
```
2021-08-14 01:39:05 +03:00
Learn more in the [documentation ](./api/class-locator ).
2021-08-13 15:02:24 -07:00
2022-12-02 21:48:37 -08:00
#### 🧩 Experimental [**React**](./other-locators.md#react-locator) and [**Vue**](./other-locators.md#vue-locator) selector engines
2021-08-13 15:02:24 -07:00
React and Vue selectors allow selecting elements by its component name and/or property values. The syntax is very similar to [attribute selectors ](https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors ) and supports all attribute selector operators.
```py
2022-07-13 11:50:18 +02:00
page.locator("_react=SubmitButton[enabled=true]").click()
page.locator("_vue=submit-button[enabled=true]").click()
2021-08-13 15:02:24 -07:00
```
2022-12-02 21:48:37 -08:00
Learn more in the [react selectors documentation ](./other-locators.md#react-locator ) and the [vue selectors documentation ](./other-locators.md#vue-locator ).
2021-08-13 15:02:24 -07:00
2022-12-02 21:48:37 -08:00
#### ✨ New [**`nth`**](./other-locators.md#n-th-element-locator) and [**`visible`**](./other-locators.md#css-matching-only-visible-elements) selector engines
2021-08-13 15:02:24 -07:00
2022-12-02 21:48:37 -08:00
- [`nth` ](./other-locators.md#n-th-element-locator ) selector engine is equivalent to the `:nth-match` pseudo class, but could be combined with other selector engines.
- [`visible` ](./other-locators.md#css-matching-only-visible-elements ) selector engine is equivalent to the `:visible` pseudo class, but could be combined with other selector engines.
2021-08-13 15:02:24 -07:00
```py
# select the first button among all buttons
button.click("button >> nth=0")
# or if you are using locators, you can use first, nth() and last
page.locator("button").first.click()
# click a visible button
button.click("button >> visible=true")
```
### Browser Versions
- Chromium 94.0.4595.0
- Mozilla Firefox 91.0
- WebKit 15.0
2021-07-20 19:29:52 +03:00
## Version 1.13
2021-07-21 02:44:44 +03:00
#### Playwright
2021-07-20 19:29:52 +03:00
- **🖖 Programmatic drag-and-drop support** via the [`method: Page.dragAndDrop` ] API.
2021-07-21 02:44:44 +03:00
- **🔎 Enhanced HAR** with body sizes for requests and responses. Use via `recordHar` option in [`method: Browser.newContext` ].
#### Tools
- Playwright Trace Viewer now shows parameters, returned values and `console.log()` calls.
#### New and Overhauled Guides
- [Intro ](./intro.md )
2022-08-16 22:00:54 -07:00
- [Authentication ](./auth.md )
2022-01-20 15:14:25 +02:00
- [Chrome Extensions ](./chrome-extensions.md )
2021-07-21 02:44:44 +03:00
2021-07-20 19:29:52 +03:00
#### Browser Versions
- Chromium 93.0.4576.0
- Mozilla Firefox 90.0
- WebKit 14.2
2021-07-21 02:44:44 +03:00
#### New Playwright APIs
2021-07-20 19:29:52 +03:00
- new `baseURL` option in [`method: Browser.newContext` ] and [`method: Browser.newPage` ]
- [`method: Response.securityDetails` ] and [`method: Response.serverAddr` ]
- [`method: Page.dragAndDrop` ] and [`method: Frame.dragAndDrop` ]
- [`method: Download.cancel` ]
- [`method: Page.inputValue` ], [`method: Frame.inputValue` ] and [`method: ElementHandle.inputValue` ]
- new `force` option in [`method: Page.fill` ], [`method: Frame.fill` ], and [`method: ElementHandle.fill` ]
- new `force` option in [`method: Page.selectOption` ], [`method: Frame.selectOption` ], and [`method: ElementHandle.selectOption` ]
2021-06-08 16:17:53 -07:00
## Version 1.12
#### 🧟♂️ Introducing Playwright Trace Viewer
[Playwright Trace Viewer ](./trace-viewer.md ) is a new GUI tool that helps exploring recorded Playwright traces after the script ran. Playwright traces let you examine:
- page DOM before and after each Playwright action
- page rendering before and after each Playwright action
- browser network during script execution
Traces are recorded using the new [`property: BrowserContext.tracing` ] API:
2021-06-08 16:43:34 -07:00
```python
browser = chromium.launch()
context = browser.new_context()
2021-06-08 16:17:53 -07:00
2021-06-08 16:43:34 -07:00
# Start tracing before creating / navigating a page.
context.tracing.start(screenshots=True, snapshots=True)
2021-06-08 16:17:53 -07:00
2021-06-08 16:43:34 -07:00
page.goto("https://playwright.dev")
2021-06-08 16:17:53 -07:00
2021-06-08 16:43:34 -07:00
# Stop tracing and export it into a zip archive.
context.tracing.stop(path = "trace.zip")
2021-06-08 16:17:53 -07:00
```
Traces are examined later with the Playwright CLI:
```sh
2021-06-08 16:43:34 -07:00
playwright show-trace trace.zip
2021-06-08 16:17:53 -07:00
```
That will open the following GUI:

👉 Read more in [trace viewer documentation ](./trace-viewer.md ).
#### Browser Versions
- Chromium 93.0.4530.0
- Mozilla Firefox 89.0
- WebKit 14.2
This version of Playwright was also tested against the following stable channels:
- Google Chrome 91
- Microsoft Edge 91
#### New APIs
- `reducedMotion` option in [`method: Page.emulateMedia` ], [`method: BrowserType.launchPersistentContext` ], [`method: Browser.newContext` ] and [`method: Browser.newPage` ]
- [`event: BrowserContext.request` ]
- [`event: BrowserContext.requestFailed` ]
- [`event: BrowserContext.requestFinished` ]
- [`event: BrowserContext.response` ]
- `tracesDir` option in [`method: BrowserType.launch` ] and [`method: BrowserType.launchPersistentContext` ]
- new [`property: BrowserContext.tracing` ] API namespace
- new [`method: Download.page` ] method
2021-05-10 15:51:37 -07:00
## Version 1.11
🎥 New video: [Playwright: A New Test Automation Framework for the Modern Web ](https://youtu.be/_Jla6DyuEu4 ) ([slides ](https://docs.google.com/presentation/d/1xFhZIJrdHkVe2CuMKOrni92HoG2SWslo0DhJJQMR1DI/edit?usp=sharing ))
- We talked about Playwright
- Showed engineering work behind the scenes
- Did live demos with new features ✨
- **Special thanks** to [applitools ](http://applitools.com/ ) for hosting the event and inviting us!
#### Browser Versions
- Chromium 92.0.4498.0
- Mozilla Firefox 89.0b6
- WebKit 14.2
#### New APIs
- support for **async predicates** across the API in methods such as [`method: Page.waitForRequest` ] and others
- new **emulation devices** : Galaxy S8, Galaxy S9+, Galaxy Tab S4, Pixel 3, Pixel 4
- new methods:
* [`method: Page.waitForURL` ] to await navigations to URL
* [`method: Video.delete` ] and [`method: Video.saveAs` ] to manage screen recording
- new options:
* `screen` option in the [`method: Browser.newContext` ] method to emulate `window.screen` dimensions
* `position` option in [`method: Page.check` ] and [`method: Page.uncheck` ] methods
* `trial` option to dry-run actions in [`method: Page.check` ], [`method: Page.uncheck` ], [`method: Page.click` ], [`method: Page.dblclick` ], [`method: Page.hover` ] and [`method: Page.tap` ]
2021-03-24 14:51:28 -07:00
## Version 1.10
- [Playwright for Java v1.10 ](https://github.com/microsoft/playwright-java ) is **now stable** !
- Run Playwright against **Google Chrome** and **Microsoft Edge** stable channels with the [new channels API ](./browsers ).
- Chromium screenshots are **fast** on Mac & Windows.
#### Bundled Browser Versions
- Chromium 90.0.4430.0
- Mozilla Firefox 87.0b10
- WebKit 14.2
This version of Playwright was also tested against the following stable channels:
- Google Chrome 89
- Microsoft Edge 89
#### New APIs
- [`browserType.launch()` ](./api/class-browsertype#browsertypelaunchoptions ) now accepts the new `'channel'` option. Read more in [our documentation ](./browsers ).
2021-02-23 18:46:47 -08:00
## Version 1.9
2022-07-27 13:12:01 +02:00
- [Playwright Inspector ](./debug.md ) is a **new GUI tool** to author and debug your tests.
2021-02-23 18:46:47 -08:00
- **Line-by-line debugging** of your Playwright scripts, with play, pause and step-through.
- Author new scripts by **recording user actions** .
- **Generate element selectors** for your script by hovering over elements.
- Set the `PWDEBUG=1` environment variable to launch the Inspector
2022-07-27 13:12:01 +02:00
- **Pause script execution** with [`method: Page.pause` ] in headed mode. Pausing the page launches [Playwright Inspector ](./debug.md ) for debugging.
2021-02-23 18:46:47 -08:00
2022-12-02 21:48:37 -08:00
- **New has-text pseudo-class** for CSS selectors. `:has-text("example")` matches any element containing `"example"` somewhere inside, possibly in a child or a descendant element. See [more examples ](./other-locators.md#css-matching-by-text ).
2021-02-23 18:46:47 -08:00
- **Page dialogs are now auto-dismissed** during execution, unless a listener for `dialog` event is configured. [Learn more ](./dialogs.md ) about this.
- [Playwright for Python ](https://github.com/microsoft/playwright-python ) is **now stable** with an idiomatic snake case API and pre-built [Docker image ](./docker.md ) to run tests in CI/CD.
#### Browser Versions
- Chromium 90.0.4421.0
- Mozilla Firefox 86.0b10
- WebKit 14.1
#### New APIs
- [`method: Page.pause` ].
2021-02-09 21:44:16 -08:00
## Version 1.8
2022-12-02 21:48:37 -08:00
- [Selecting elements based on layout ](./other-locators.md#css-matching-elements-based-on-layout ) with `:left-of()` , `:right-of()` , `:above()` and `:below()` .
2023-03-31 10:48:05 +02:00
- Playwright now includes command line interface, former playwright-cli.
2021-06-02 09:23:06 -07:00
```bash python
2021-05-11 20:47:48 +02:00
playwright --help
2021-02-09 21:44:16 -08:00
```
- [`method: Page.selectOption` ] now waits for the options to be present.
- New methods to [assert element state ](./actionability#assertions ) like [`method: Page.isEditable` ].
#### New APIs
- [`method: ElementHandle.isChecked` ].
- [`method: ElementHandle.isDisabled` ].
- [`method: ElementHandle.isEditable` ].
- [`method: ElementHandle.isEnabled` ].
- [`method: ElementHandle.isHidden` ].
- [`method: ElementHandle.isVisible` ].
- [`method: Page.isChecked` ].
- [`method: Page.isDisabled` ].
- [`method: Page.isEditable` ].
- [`method: Page.isEnabled` ].
- [`method: Page.isHidden` ].
- [`method: Page.isVisible` ].
- New option `'editable'` in [`method: ElementHandle.waitForElementState` ].
#### Browser Versions
- Chromium 90.0.4392.0
- Mozilla Firefox 85.0b5
- WebKit 14.1
## Version 1.7
2021-06-10 09:16:10 -07:00
- **New Java SDK**: [Playwright for Java ](https://github.com/microsoft/playwright-java ) is now on par with [JavaScript ](https://github.com/microsoft/playwright ), [Python ](https://github.com/microsoft/playwright-python ) and [.NET bindings ](https://github.com/microsoft/playwright-dotnet ).
2021-02-09 21:44:16 -08:00
- **Browser storage API**: New convenience APIs to save and load browser storage state (cookies, local storage) to simplify automation scenarios with authentication.
2022-12-02 21:48:37 -08:00
- **New CSS selectors**: We heard your feedback for more flexible selectors and have revamped the selectors implementation. Playwright 1.7 introduces [new CSS extensions ](./other-locators.md#css-locator ) and there's more coming soon.
2021-02-09 21:44:16 -08:00
- **New website**: The docs website at [playwright.dev ](https://playwright.dev/ ) has been updated and is now built with [Docusaurus ](https://v2.docusaurus.io/ ).
- **Support for Apple Silicon**: Playwright browser binaries for WebKit and Chromium are now built for Apple Silicon.
#### New APIs
- [`method: BrowserContext.storageState` ] to get current state for later reuse.
- `storageState` option in [`method: Browser.newContext` ] and [`method: Browser.newPage` ] to setup browser context state.
#### Browser Versions
- Chromium 89.0.4344.0
- Mozilla Firefox 84.0b9
- WebKit 14.1