File: release-notes.md | Updated: 11/18/2025
On this page
Version 1.55ā
to_be_visible() assertions: Codegen can now generate automatic to_be_visible() assertions for common UI interactions. This feature can be enabled in the Codegen settings UI.This version was also tested against the following stable channels:
Version 1.54ā
New cookie property partition_key in browser_context.cookies()
and browser_context.add_cookies()
. This property allows to save and restore partitioned cookies. See CHIPS MDN article
for more information. Note that browsers have different support and defaults for cookie partitioning.
New option --user-data-dir in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.
playwright codegen --user-data-dir=./user-data
playwright open does not open the test recorder anymore. Use playwright codegen instead.
This version was also tested against the following stable channels:
Version 1.53ā
New Steps in Trace Viewer:
New method locator.describe() to describe a locator. Used for trace viewer.
button = page.get_by_test_id("btn-sub").describe("Subscribe button")button.click()
python -m playwright install --list will now list all installed browsers, versions and locations.
This version was also tested against the following stable channels:
Version 1.52ā
New method expect(locator).to_contain_class() to ergonomically assert individual class names on the element.
expect(page.get_by_role('listitem', name='Ship v1.52')).to_contain_class('done')
Aria Snapshots
got two new properties: /children
for strict matching and /url for links.
expect(locator).to_match_aria_snapshot(""" - list - /children: equal - listitem: Feature A - listitem: - link "Feature B": - /url: "https://playwright.dev"""")
? and [] anymore. We recommend using regular expressions instead.Cookie header anymore. If a Cookie header is provided, it will be ignored, and the cookie will be loaded from the browser's cookie store. To set custom cookies, use browser_context.add_cookies()
.This version was also tested against the following stable channels:
Version 1.51ā
New option indexed_db for browser_context.storage_state() allows to save and restore IndexedDB contents. Useful when your application uses IndexedDB API to store authentication tokens, like Firebase Authentication.
Here is an example following the authentication guide :
# Save storage state into the file. Make sure to include IndexedDB.storage = await context.storage_state(path="state.json", indexed_db=True)# Create a new context with the saved storage state.context = await browser.new_context(storage_state="state.json")
New option visible for locator.filter() allows matching only visible elements.
# Ignore invisible todo items.todo_items = page.get_by_test_id("todo-item").filter(visible=True)# Check there are exactly 3 visible ones.await expect(todo_items).to_have_count(3)
New option contrast for methods page.emulate_media()
and browser.new_context()
allows to emulate the prefers-contrast media feature.
New option fail_on_status_code makes all fetch requests made through the APIRequestContext throw on response codes other than 2xx and 3xx.
This version was also tested against the following stable channels:
Version 1.50ā
canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.Call and Network panels now display additional time information.<input>, <select>, or a number of other editable elements.This version was also tested against the following stable channels:
Version 1.49ā
New assertion expect(locator).to_match_aria_snapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.
page.goto("https://playwright.dev")expect(page.locator('body')).to_match_aria_snapshot(''' - banner: - heading /Playwright enables reliable/ [level=1] - link "Get started" - link "Star microsoft/playwright on GitHub" - main: - img "Browsers (Chromium, Firefox, WebKit)" - heading "Any browser ⢠Any platform ⢠One API"''')
You can generate this assertion with Test Generator or by calling locator.aria_snapshot() .
Learn more in the aria snapshots guide .
New method tracing.group() allows you to visually group actions in the trace viewer.
# All actions between group and group_end# will be shown in the trace viewer as a group.page.context.tracing.group("Open Playwright.dev > API")page.goto("https://playwright.dev/")page.get_by_role("link", name="API").click()page.context.tracing.group_end()
chrome and msedge channels switch to new headless modeāThis change affects you if you're using one of the following channels in your playwright.config.ts:
chrome, chrome-dev, chrome-beta, or chrome-canarymsedge, msedge-dev, msedge-beta, or msedge-canaryAfter updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See issue #33566 for more details.
You can opt into the new headless mode by using 'chromium' channel. As official Chrome documentation puts it
:
New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.
See issue #33566 for the list of possible breakages you could encounter and more details on Chromium headless. Please file an issue if you see any problems after opting in.
pytest test_login.py --browser-channel chromium
<canvas> elements inside a snapshot now draw a preview.This version was also tested against the following stable channels:
Version 1.48ā
New methods page.route_web_socket()
and browser_context.route_web_socket()
allow to intercept, modify and mock WebSocket connections initiated in the page. Below is a simple example that mocks WebSocket communication by responding to a "request" with a "response".
def message_handler(ws: WebSocketRoute, message: Union[str, bytes]): if message == "request": ws.send("response")page.route_web_socket("/ws", lambda ws: ws.on_message( lambda message: message_handler(ws, message)))
See WebSocketRoute for more details.
This version was also tested against the following stable channels:
Version 1.47ā
The Network tab in the trace viewer has several nice improvements:
mcr.microsoft.com/playwright/python:v1.47.0 now serves a Playwright image based on Ubuntu 24.04 Noble. To use the 22.04 jammy-based image, please use mcr.microsoft.com/playwright/python:v1.47.0-jammy instead.:latest/:focal/:jammy tag for Playwright Docker images is no longer being published. Pin to a specific version for better stability and reproducibility.macos-13. We recommend upgrading GitHub Actions to macos-14.This version was also tested against the following stable channels:
Version 1.46ā
Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication.
You can provide client certificates as a parameter of browser.new_context()
and api_request.new_context()
. The following snippet sets up a client certificate for https://example.com:
context = browser.new_context( client_certificates=[ { "origin": "https://example.com", "certPath": "client-certificates/cert.pem", "keyPath": "client-certificates/key.pem", } ],)
base_url.maxRetries option in api_request_context.fetch()
which retries on the ECONNRESET network error.This version was also tested against the following stable channels:
Version 1.45ā
Utilizing the new Clock API allows to manipulate and control time within tests to verify time-related behavior. This API covers many common scenarios, including:
testing with predefined time;
keeping consistent time and timers;
monitoring inactivity;
ticking through time manually.
Date.now will progress as the timers fire.page.clock.install(time=datetime.datetime(2024, 2, 2, 8, 0, 0))page.goto("http://localhost:3333")# Pretend that the user closed the laptop lid and opened it again at 10am.# Pause the time once reached that point.page.clock.pause_at(datetime.datetime(2024, 2, 2, 10, 0, 0))# Assert the page state.expect(page.get_by_test_id("current-time")).to_have_text("2/2/2024, 10:00:00 AM")# Close the laptop lid again and open it at 10:30am.page.clock.fast_forward("30:00")expect(page.get_by_test_id("current-time")).to_have_text("2/2/2024, 10:30:00 AM")See the clock guide for more details.
Method locator.set_input_files()
now supports uploading a directory for <input type=file webkitdirectory> elements.
page.get_by_label("Upload directory").set_input_files('mydir')
Multiple methods like locator.click()
or locator.press()
now support a ControlOrMeta modifier key. This key maps to Meta on macOS and maps to Control on Windows and Linux.
# Press the common keyboard shortcut Control+S or Meta+S to trigger a "Save" operation.page.keyboard.press("ControlOrMeta+S")
New property httpCredentials.send in api_request.new_context()
that allows to either always send the Authorization header or only send it in response to 401 Unauthorized.
Playwright now supports Chromium, Firefox and WebKit on Ubuntu 24.04.
v1.45 is the last release to receive WebKit update for macOS 12 Monterey. Please update macOS to keep using the latest WebKit.
This version was also tested against the following stable channels:
Version 1.44ā
Accessibility assertions
expect(locator).to_have_accessible_name() checks if the element has the specified accessible name:
locator = page.get_by_role("button")expect(locator).to_have_accessible_name("Submit")
expect(locator).to_have_accessible_description() checks if the element has the specified accessible description:
locator = page.get_by_role("button")expect(locator).to_have_accessible_description("Upload a photo")
expect(locator).to_have_role() checks if the element has the specified ARIA role:
locator = page.get_by_test_id("save-button")expect(locator).to_have_role("button")
Locator handler
After executing the handler added with page.add_locator_handler()
, Playwright will now wait until the overlay that triggered the handler is not visible anymore. You can opt-out of this behavior with the new no_wait_after option.
You can use new times option in page.add_locator_handler()
to specify maximum number of times the handler should be run.
The handler in page.add_locator_handler() now accepts the locator as argument.
New page.remove_locator_handler() method for removing previously added locator handlers.
locator = page.get_by_text("This interstitial covers the button")page.add_locator_handler(locator, lambda overlay: overlay.locator("#close").click(), times=3, no_wait_after=True)# Run your tests that can be interrupted by the overlay.# ...page.remove_locator_handler(locator)
Miscellaneous options
ignore_case option
.This version was also tested against the following stable channels:
Version 1.43ā
Method browser_context.clear_cookies() now supports filters to remove only some cookies.
# Clear all cookies.context.clear_cookies()# New: clear cookies with a particular name.context.clear_cookies(name="session-id")# New: clear cookies for a particular domain.context.clear_cookies(domain="my-origin.com")
New method locator.content_frame converts a Locator object to a FrameLocator . This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.
locator = page.locator("iframe[name='embedded']")# ...frame_locator = locator.content_frameframe_locator.getByRole("button").click()
New method frame_locator.owner
converts a FrameLocator
object to a Locator
. This can be useful when you have a FrameLocator
object obtained somewhere, and later on would like to interact with the iframe element.
frame_locator = page.frame_locator("iframe[name='embedded']")# ...locator = frame_locator.ownerexpect(locator).to_be_visible()
Conda builds are now published for macOS-arm64 and Linux-arm64.
This version was also tested against the following stable channels:
Version 1.42ā
New method page.add_locator_handler() registers a callback that will be invoked when specified element becomes visible and may block Playwright actions. The callback can get rid of the overlay. Here is an example that closes a cookie dialog when it appears.
# Setup the handler.page.add_locator_handler( page.get_by_role("heading", name="Hej! You are in control of your cookies."), lambda: page.get_by_role("button", name="Accept all").click(),)# Write the test as usual.page.goto("https://www.ikea.com/")page.get_by_role("link", name="Collection of blue and white").click()expect(page.get_by_role("heading", name="Light and easy")).to_be_visible()
This version was also tested against the following stable channels:
Version 1.41ā
This version was also tested against the following stable channels:
Version 1.40ā
New tools to generate assertions:
Here is an example of a generated test with assertions:
from playwright.sync_api import Page, expectdef test_example(page: Page) -> None: page.goto("https://playwright.dev/") page.get_by_role("link", name="Get started").click() expect(page.get_by_label("Breadcrumbs").get_by_role("list")).to_contain_text("Installation") expect(page.get_by_label("Search")).to_be_visible() page.get_by_label("Search").click() page.get_by_placeholder("Search docs").fill("locator") expect(page.get_by_placeholder("Search docs")).to_have_value("locator");
This version was also tested against the following stable channels:
Version 1.39ā
Evergreen browsers update.
This version was also tested against the following stable channels:
Version 1.38ā
This version was also tested against the following stable channels:
Version 1.37ā
pytest-playwright is now also getting published on AnacondaPlaywright now supports Debian 12 Bookworm on both x86_64 and arm64 for Chromium, Firefox and WebKit. Let us know if you encounter any issues!
Linux support looks like this:
| | Ubuntu 20.04 | Ubuntu 22.04 | Debian 11 | Debian 12 | | --- | --- | --- | --- | --- | | Chromium | ā | ā | ā | ā | | WebKit | ā | ā | ā | ā | | Firefox | ā | ā | ā | ā |
This version was also tested against the following stable channels:
Version 1.36ā
šļø Summer maintenance release.
This version was also tested against the following stable channels:
Version 1.35ā
New option mask_color for methods page.screenshot()
and locator.screenshot()
to change default masking color.
New uninstall CLI command to uninstall browser binaries:
$ playwright uninstall # remove browsers installed by this installation$ playwright uninstall --all # remove all ever-install Playwright browsers
This version was also tested against the following stable channels:
Version 1.34ā
New locator.and_() to create a locator that matches both locators.
button = page.get_by_role("button").and_(page.get_by_title("Subscribe"))
New events browser_context.on("console") and browser_context.on("dialog") to subscribe to any dialogs and console messages from any page from the given browser context. Use the new methods console_message.page and dialog.page to pin-point event source.
This version was also tested against the following stable channels:
Version 1.33ā
Use locator.or_() to create a locator that matches either of the two locators. Consider a scenario where you'd like to click on a "New email" button, but sometimes a security settings dialog shows up instead. In this case, you can wait for either a "New email" button, or a dialog and act accordingly:
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()if (dialog.is_visible()): page.get_by_role("button", name="Dismiss").click()new_email.click()
Use new options has_not and has_not_text in locator.filter() to find elements that do not match certain conditions.
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()
Use new web-first assertion expect(locator).to_be_attached() to ensure that the element is present in the page's DOM. Do not confuse with the expect(locator).to_be_visible() that ensures that element is both attached & visible.
New option has_not in locator.filter()
New option has_not_text in locator.filter()
New option timeout in route.fetch()
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.This version was also tested against the following stable channels:
Version 1.32ā
This version was also tested against the following stable channels:
Version 1.31ā
New assertion expect(locator).to_be_in_viewport() ensures that locator points to an element that intersects viewport, according to the intersection observer API .
from playwright.sync_api import expectlocator = 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)
This version was also tested against the following stable channels:
Version 1.30ā
This version was also tested against the following stable channels:
Version 1.29ā
New method route.fetch()
and new option json for route.fulfill()
:
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 locator.all() to iterate over all matching elements:
# Check all checkboxes!checkboxes = page.get_by_role("checkbox")for checkbox in checkboxes.all(): checkbox.check()
locator.select_option() matches now by value or label:
<select multiple> <option value="red">Red</option> <option value="green">Green</option> <option value="blue">Blue</option></select>
element.select_option("Red")
postData in method route.continue_()
now supports Serializable
values.This version was also tested against the following stable channels:
Version 1.28ā

This version was also tested against the following stable channels:
Version 1.27ā
With these new APIs writing locators is a joy:
page.get_by_text() to locate by text content.
page.get_by_role() to locate by ARIA role , ARIA attributes and accessible name .
page.get_by_label() to locate a form control by associated label's text.
page.get_by_test_id()
to locate an element based on its data-testid attribute (other attribute can be configured).
page.get_by_placeholder() to locate an input by placeholder.
page.get_by_alt_text() to locate an element, usually image, by its text alternative.
page.get_by_title() to locate an element by its title.
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.
expect(locator).to_have_attribute()
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.
expect(page.get_by_role("button")).to_have_attribute("disabled", "")
This version was also tested against the following stable channels:
Version 1.26ā
enabled for expect(locator).to_be_enabled()
.editable for expect(locator).to_be_editable()
.visible for expect(locator).to_be_visible()
.max_redirects for api_request_context.get()
and others to limit redirect count.A bunch of Playwright APIs already support the wait_until: "domcontentloaded" option. For example:
page.goto("https://playwright.dev", wait_until="domcontentloaded")
Prior to 1.26, this would wait for all iframes to fire the DOMContentLoaded event.
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.
This version was also tested against the following stable channels:
Version 1.25ā
mcr.microsoft.com/playwright/python:v1.34.0-jammy.This version was also tested against the following stable channels:
Version 1.24ā
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:
| | Ubuntu 20.04 | Ubuntu 22.04 | Debian 11 | :--- | :---: | :---: | :---: | :---: | | Chromium | ā | ā | ā | | WebKit | ā | ā | ā | | Firefox | ā | ā | ā |
We rewrote our Getting Started docs to be more end-to-end testing focused. Check them out on playwright.dev .
Version 1.23ā
Now you can record network traffic into a HAR file and re-use this traffic in your tests.
To record network into HAR file:
npx playwright open --save-har=github.har.zip https://github.com/microsoft
Alternatively, you can record HAR programmatically:
Sync
Async
context = browser.new_context(record_har_path="github.har.zip")# ... do stuff ...context.close()
context = await browser.new_context(record_har_path="github.har.zip")# ... do stuff ...await context.close()
Use the new methods page.route_from_har() or browser_context.route_from_har() to serve matching responses from the HAR file:
Sync
Async
context.route_from_har("github.har.zip")
await context.route_from_har("github.har.zip")
Read more in our documentation .
You can now use route.fallback() to defer routing to other handlers.
Consider the following example:
Sync
Async
Note that the new methods page.route_from_har() and browser_context.route_from_har() also participate in routing and could be deferred to.
<select multiple> element.ignore_case option.If there's a service worker that's in your way, you can now easily disable it with a new context option service_workers:
Sync
Async
context = browser.new_context(service_workers="block")page = context.new_page()
context = await browser.new_context(service_workers="block")page = await context.new_page()
Using .zip path for recordHar context option automatically zips the resulting HAR:
Sync
Async
context = browser.new_context(record_har_path="github.har.zip")
context = await 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:
Sync
Async
context = browser.new_context(record_har_mode="minimal", record_har_path="har.har")
context = await browser.new_context(record_har_mode="minimal", record_har_path="har.har")
Playwright now runs on Ubuntu 22 amd64 and Ubuntu 22 arm64.
Version 1.22ā
Role selectors that allow selecting elements by their ARIA role , ARIA attributes and accessible name .
# Click a button with accessible name "log in"page.locator("role=button[name='log in']").click()
Read more in our documentation .
New locator.filter() API to filter an existing locator
buttons = page.locator("role=button")# ...submit_button = buttons.filter(has_text="Submit")submit_button.click()
Codegen now supports generating Pytest Tests

Version 1.21ā
New role selectors that allow selecting elements by their ARIA role , ARIA attributes and accessible name .
Sync
Async
Read more in our documentation .
New scale option in page.screenshot()
for smaller sized screenshots.
New caret option in page.screenshot()
to control text caret. Defaults to "hide".
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.This version was also tested against the following stable channels:
Version 1.20ā
animations: "disabled" rewinds all CSS animations and transitions to a consistent statemask: Locator[] masks given elements, overlaying them with pink #FF00FF boxes.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.This version was also tested against the following stable channels:
Version 1.19ā
Locator now supports a has option that makes sure it contains another locator inside:
Sync
Async
page.locator("article", has=page.locator(".highlight")).click()
await page.locator("article", has=page.locator(".highlight")).click()
Read more in locator documentation
New locator.page
page.screenshot() and locator.screenshot() now automatically hide blinking caret
Playwright Codegen now generates locators and frame locators
This version was also tested against the following stable channels:
Version 1.18ā
Playwright for Python 1.18 introduces new API Testing that lets you send requests to the server directly from Python! Now you can:
To do a request on behalf of Playwright's Page, use new page.request API:
Sync
Async
Read more in our documentation .
Playwright for Python 1.18 introduces Web-First Assertions .
Consider the following example:
Sync
Async
from playwright.sync_api import Page, expectdef test_status_becomes_submitted(page: Page) -> None: # .. page.locator("#submit-button").click() expect(page.locator(".status")).to_have_text("Submitted")
from playwright.async_api import Page, expectasync def test_status_becomes_submitted(page: Page) -> None: # .. await page.locator("#submit-button").click() await 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.
Read more in our documentation .
Each locator can now be optionally filtered by the text it contains:
Sync
Async
page.locator("li", has_text="my item").locator("button").click()
await page.locator("li", has_text="my item").locator("button").click()
Read more in locator documentation
accept_downloads
option now defaults to True.sources
option to embed sources into traces.This version was also tested against the following stable channels:
Version 1.17ā
Playwright 1.17 introduces frame locators
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 page.frame_locator() or locator.frame_locator() method.
locator = page.frame_locator("my-frame").locator("text=Submit")locator.click()
Read more at our documentation .
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 is a progressive web application that processes traces locally.


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:
npx playwright install msedge
Version 1.16ā
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:
order_sent = page.locator("#order-sent")order_sent.wait_for()
Read more about locator.wait_for() .
Playwright Docker image is now published for Arm64 so it can be used on Apple Silicon.
Read more about Docker integration .
npx playwright show-trace and drop trace files to the trace viewer PWARead more about Trace Viewer .
This version of Playwright was also tested against the following stable channels:
Version 1.15ā
By using mouse.wheel() you are now able to scroll vertically or horizontally.
Previously it was not possible to get multiple header values of a response. This is now possible and additional helper functions are available:
Its now possible to emulate the forced-colors CSS media feature by passing it in the browser.new_context()
or calling page.emulate_media()
.
times option to specify how many times this route should be matched.Version 1.14ā
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.
# This will throw if you have more than one button!page.click("button", strict=True)
Locator represents a view to the element(s) on the page. It captures the logic sufficient to retrieve the element at any given moment.
The difference between the Locator and ElementHandle is that the latter points to a particular element, while Locator captures the logic of how to retrieve that element.
Also, locators are "strict" by default!
locator = page.locator("button")locator.click()
Learn more in the documentation .
React and Vue selectors allow selecting elements by its component name and/or property values. The syntax is very similar to attribute selectors and supports all attribute selector operators.
page.locator("_react=SubmitButton[enabled=true]").click()page.locator("_vue=submit-button[enabled=true]").click()
Learn more in the react selectors documentation and the vue selectors documentation .
nthand visible
selector enginesā
nth
selector engine is equivalent to the :nth-match pseudo class, but could be combined with other selector engines.
visible
selector engine is equivalent to the :visible pseudo class, but could be combined with other selector engines.
Version 1.13ā
recordHar option in browser.new_context()
.console.log() calls.new baseURL option in browser.new_context()
and browser.new_page()
page.input_value() , frame.input_value() and element_handle.input_value()
new force option in page.fill()
, frame.fill()
, and element_handle.fill()
new force option in page.select_option()
, frame.select_option()
, and element_handle.select_option()
Version 1.12ā
Playwright Trace Viewer is a new GUI tool that helps exploring recorded Playwright traces after the script ran. Playwright traces let you examine:
Traces are recorded using the new browser_context.tracing API:
browser = chromium.launch()context = browser.new_context()# Start tracing before creating / navigating a page.context.tracing.start(screenshots=True, snapshots=True)page.goto("https://playwright.dev")# Stop tracing and export it into a zip archive.context.tracing.stop(path = "trace.zip")
Traces are examined later with the Playwright CLI:
playwright show-trace trace.zip
That will open the following GUI:

š Read more in trace viewer documentation .
This version of Playwright was also tested against the following stable channels:
reducedMotion option in page.emulate_media()
, browser_type.launch_persistent_context()
, browser.new_context()
and browser.new_page()
tracesDir option in browser_type.launch()
and browser_type.launch_persistent_context()
new browser_context.tracing API namespace
new download.page method
Version 1.11ā
š„ New video: Playwright: A New Test Automation Framework for the Modern Web (slides )
screen option in the browser.new_context()
method to emulate window.screen dimensionsposition option in page.check()
and page.uncheck()
methodstrial option to dry-run actions in page.check()
, page.uncheck()
, page.click()
, page.dblclick()
, page.hover()
and page.tap()Version 1.10ā
This version of Playwright was also tested against the following stable channels:
'channel' option. Read more in our documentation
.Version 1.9ā
PWDEBUG=1 environment variable to launch the Inspector:has-text("example") matches any element containing "example" somewhere inside, possibly in a child or a descendant element. See more examples
.dialog event is configured. Learn more
about this.Version 1.8ā
Selecting elements based on layout
with :left-of(), :right-of(), :above() and :below().
Playwright now includes command line interface, former playwright-cli.
playwright --help
page.select_option() now waits for the options to be present.
New methods to assert element state like page.is_editable() .
'editable' in element_handle.wait_for_element_state()
.Version 1.7ā
storageState option in browser.new_context()
and browser.new_page()
to setup browser context state.Chromium 89.0.4344.0
Mozilla Firefox 84.0b9
WebKit 14.1