From ed6298793bd0306085f8573fa401598fb347381c Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Mon, 19 Sep 2022 14:14:29 -0400 Subject: [PATCH] chore: update release notes for 1.26 --- docs/src/release-notes-js.md | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/docs/src/release-notes-js.md b/docs/src/release-notes-js.md index 952783e2fd2dd..a01103b25e9ed 100644 --- a/docs/src/release-notes-js.md +++ b/docs/src/release-notes-js.md @@ -6,16 +6,6 @@ toc_max_heading_level: 2 ## Version 1.26 -### (Experimental) Docker integration - -Playwright Test now ships an **experimental** Docker integration. The Docker container provides a consistent environment, eliminating browser rendering differences across platforms. - -With this integration, only **browser binaries** are running inside a Docker container, while all the code is still running on the host operating system. - - - -Read more in [our documentation](./docker#experimental-playwright-test-docker-integration). - ### Assertions - New option `enabled` for [`method: LocatorAssertions.toBeEnabled`]. @@ -41,7 +31,7 @@ await page.goto('https://playwright.dev', { ``` Prior to 1.26, this would wait for all iframes to fire the `DOMContentLoaded` -event. +event. To align with web specification, the `'domcontentloaded'` value only waits for the target frame to fire the `'DOMContentLoaded'` event. Use `waitUntil: 'load'` to wait for all iframes.