From af5eb9c2bdae90eb235bc6ab566007a94cdae639 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 21 Jul 2021 02:44:44 +0300 Subject: [PATCH] docs: updated release notes for v1.13.0 (#7758) --- docs/src/release-notes-csharp.md | 19 ++++++++++++++++--- docs/src/release-notes-java.md | 19 ++++++++++++++++--- docs/src/release-notes-js.md | 28 ++++++++++++++++++++++++---- docs/src/release-notes-python.md | 20 +++++++++++++++++--- 4 files changed, 73 insertions(+), 13 deletions(-) diff --git a/docs/src/release-notes-csharp.md b/docs/src/release-notes-csharp.md index 425b55b291..f14ea882c1 100644 --- a/docs/src/release-notes-csharp.md +++ b/docs/src/release-notes-csharp.md @@ -7,10 +7,23 @@ title: "Release notes" ## Version 1.13 -#### Highlights +#### Playwright - **πŸ–– Programmatic drag-and-drop support** via the [`method: Page.dragAndDrop`] API. -- **πŸ”Ž Enhanced HAR support** with body sizes for requests and responses. Use via `recordHar` option in [`method: Browser.newContext`]. +- **πŸ”Ž 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) +- [Authentication](./auth.md) +- [Chome Extensions](./chrome-extensions.md) +- [Playwright Test Annotations](./test-annotations.md) +- [Playwright Test Configuration](./test-configuration.md) +- [Playwright Test Fixtures](./test-fixtures.md) #### Browser Versions @@ -18,7 +31,7 @@ title: "Release notes" - Mozilla Firefox 90.0 - WebKit 14.2 -#### New APIs +#### New Playwright APIs - new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`] - [`method: Response.securityDetails`] and [`method: Response.serverAddr`] diff --git a/docs/src/release-notes-java.md b/docs/src/release-notes-java.md index 4255feeab8..484171c24f 100644 --- a/docs/src/release-notes-java.md +++ b/docs/src/release-notes-java.md @@ -7,10 +7,23 @@ title: "Release notes" ## Version 1.13 -#### Highlights +#### Playwright - **πŸ–– Programmatic drag-and-drop support** via the [`method: Page.dragAndDrop`] API. -- **πŸ”Ž Enhanced HAR support** with body sizes for requests and responses. Use via `recordHar` option in [`method: Browser.newContext`]. +- **πŸ”Ž 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) +- [Authentication](./auth.md) +- [Chome Extensions](./chrome-extensions.md) +- [Playwright Test Annotations](./test-annotations.md) +- [Playwright Test Configuration](./test-configuration.md) +- [Playwright Test Fixtures](./test-fixtures.md) #### Browser Versions @@ -18,7 +31,7 @@ title: "Release notes" - Mozilla Firefox 90.0 - WebKit 14.2 -#### New APIs +#### New Playwright APIs - new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`] - [`method: Response.securityDetails`] and [`method: Response.serverAddr`] diff --git a/docs/src/release-notes-js.md b/docs/src/release-notes-js.md index fe18e5bd4c..a401a1d6cf 100644 --- a/docs/src/release-notes-js.md +++ b/docs/src/release-notes-js.md @@ -7,11 +7,31 @@ title: "Release notes" ## Version 1.13 -#### Highlights -- **⚑️ Introducing Reporter API for Playwright Test** which is already used to create an [Allure Playwright reporter](https://github.com/allure-framework/allure-js/pull/297). +#### Playwright Test + +- **⚑️ Introducing [Reporter API](https://github.com/microsoft/playwright/blob/master/types/testReporter.d.ts)** which is already used to create an [Allure Playwright reporter](https://github.com/allure-framework/allure-js/pull/297). +- **⛺️ New [`baseURL` fixture](./test-configuration#basic-options)** to support relative paths in tests. + + +#### Playwright + - **πŸ–– Programmatic drag-and-drop support** via the [`method: Page.dragAndDrop`] API. -- **πŸ”Ž Enhanced HAR support** with body sizes for requests and responses. Use via `recordHar` option in [`method: Browser.newContext`]. +- **πŸ”Ž 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. +- Playwright Inspector can generate Playwright Test tests. + +#### New and Overhauled Guides + +- [Intro](./intro.md) +- [Authentication](./auth.md) +- [Chome Extensions](./chrome-extensions.md) +- [Playwright Test Annotations](./test-annotations.md) +- [Playwright Test Configuration](./test-configuration.md) +- [Playwright Test Fixtures](./test-fixtures.md) #### Browser Versions @@ -19,7 +39,7 @@ title: "Release notes" - Mozilla Firefox 90.0 - WebKit 14.2 -#### New APIs +#### New Playwright APIs - new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`] - [`method: Response.securityDetails`] and [`method: Response.serverAddr`] diff --git a/docs/src/release-notes-python.md b/docs/src/release-notes-python.md index 2829a53a2c..c7e45e08e8 100644 --- a/docs/src/release-notes-python.md +++ b/docs/src/release-notes-python.md @@ -7,10 +7,24 @@ title: "Release notes" ## Version 1.13 -#### Highlights +#### Playwright - **πŸ–– Programmatic drag-and-drop support** via the [`method: Page.dragAndDrop`] API. -- **πŸ”Ž Enhanced HAR support** with body sizes for requests and responses. Use via `recordHar` option in [`method: Browser.newContext`]. +- **πŸ”Ž 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) +- [Authentication](./auth.md) +- [Chome Extensions](./chrome-extensions.md) +- [Playwright Test Annotations](./test-annotations.md) +- [Playwright Test Configuration](./test-configuration.md) +- [Playwright Test Fixtures](./test-fixtures.md) + #### Browser Versions @@ -18,7 +32,7 @@ title: "Release notes" - Mozilla Firefox 90.0 - WebKit 14.2 -#### New APIs +#### New Playwright APIs - new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`] - [`method: Response.securityDetails`] and [`method: Response.serverAddr`]