mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
docs: updated release notes for v1.13.0 (#7758)
This commit is contained in:
parent
20ba7c3a96
commit
af5eb9c2bd
@ -7,10 +7,23 @@ title: "Release notes"
|
|||||||
|
|
||||||
## Version 1.13
|
## Version 1.13
|
||||||
|
|
||||||
#### Highlights
|
#### Playwright
|
||||||
|
|
||||||
- **🖖 Programmatic drag-and-drop support** via the [`method: Page.dragAndDrop`] API.
|
- **🖖 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
|
#### Browser Versions
|
||||||
|
|
||||||
@ -18,7 +31,7 @@ title: "Release notes"
|
|||||||
- Mozilla Firefox 90.0
|
- Mozilla Firefox 90.0
|
||||||
- WebKit 14.2
|
- WebKit 14.2
|
||||||
|
|
||||||
#### New APIs
|
#### New Playwright APIs
|
||||||
|
|
||||||
- new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`]
|
- new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`]
|
||||||
- [`method: Response.securityDetails`] and [`method: Response.serverAddr`]
|
- [`method: Response.securityDetails`] and [`method: Response.serverAddr`]
|
||||||
|
@ -7,10 +7,23 @@ title: "Release notes"
|
|||||||
|
|
||||||
## Version 1.13
|
## Version 1.13
|
||||||
|
|
||||||
#### Highlights
|
#### Playwright
|
||||||
|
|
||||||
- **🖖 Programmatic drag-and-drop support** via the [`method: Page.dragAndDrop`] API.
|
- **🖖 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
|
#### Browser Versions
|
||||||
|
|
||||||
@ -18,7 +31,7 @@ title: "Release notes"
|
|||||||
- Mozilla Firefox 90.0
|
- Mozilla Firefox 90.0
|
||||||
- WebKit 14.2
|
- WebKit 14.2
|
||||||
|
|
||||||
#### New APIs
|
#### New Playwright APIs
|
||||||
|
|
||||||
- new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`]
|
- new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`]
|
||||||
- [`method: Response.securityDetails`] and [`method: Response.serverAddr`]
|
- [`method: Response.securityDetails`] and [`method: Response.serverAddr`]
|
||||||
|
@ -7,11 +7,31 @@ title: "Release notes"
|
|||||||
|
|
||||||
## Version 1.13
|
## 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.
|
- **🖖 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
|
#### Browser Versions
|
||||||
|
|
||||||
@ -19,7 +39,7 @@ title: "Release notes"
|
|||||||
- Mozilla Firefox 90.0
|
- Mozilla Firefox 90.0
|
||||||
- WebKit 14.2
|
- WebKit 14.2
|
||||||
|
|
||||||
#### New APIs
|
#### New Playwright APIs
|
||||||
|
|
||||||
- new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`]
|
- new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`]
|
||||||
- [`method: Response.securityDetails`] and [`method: Response.serverAddr`]
|
- [`method: Response.securityDetails`] and [`method: Response.serverAddr`]
|
||||||
|
@ -7,10 +7,24 @@ title: "Release notes"
|
|||||||
|
|
||||||
## Version 1.13
|
## Version 1.13
|
||||||
|
|
||||||
#### Highlights
|
#### Playwright
|
||||||
|
|
||||||
- **🖖 Programmatic drag-and-drop support** via the [`method: Page.dragAndDrop`] API.
|
- **🖖 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
|
#### Browser Versions
|
||||||
|
|
||||||
@ -18,7 +32,7 @@ title: "Release notes"
|
|||||||
- Mozilla Firefox 90.0
|
- Mozilla Firefox 90.0
|
||||||
- WebKit 14.2
|
- WebKit 14.2
|
||||||
|
|
||||||
#### New APIs
|
#### New Playwright APIs
|
||||||
|
|
||||||
- new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`]
|
- new `baseURL` option in [`method: Browser.newContext`] and [`method: Browser.newPage`]
|
||||||
- [`method: Response.securityDetails`] and [`method: Response.serverAddr`]
|
- [`method: Response.securityDetails`] and [`method: Response.serverAddr`]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user