You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/release-notes-csharp.md
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,35 @@ title: "Release notes"
4
4
toc_max_heading_level: 2
5
5
---
6
6
7
+
## Version 1.54
8
+
9
+
- New cookie property `PartitionKey` in [`method: BrowserContext.cookies`] and [`method: BrowserContext.addCookies`]. This property allows to save and restore partitioned cookies. See [CHIPS MDN article](https://developer.mozilla.org/en-US/docs/Web/Privacy/Guides/Privacy_sandbox/Partitioned_cookies) for more information. Note that browsers have different support and defaults for cookie partitioning.
10
+
11
+
- New option `--user-data-dir` in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.
-`pwsh bin/Debug/netX/playwright.ps1 open` does not open the test recorder anymore. Use `pwsh bin/Debug/netX/playwright.ps1 codegen` instead.
17
+
18
+
- Chromium has been changing WebGL support, based on the available GPU. There is a new flag `--enable-gpu` available in [chromium headless shell](./browsers.md#chromium-headless-shell) that you can try on your hardware.
19
+
20
+
### Browser Versions
21
+
22
+
- Chromium 139.0.7258.5
23
+
- Mozilla Firefox 140.0.2
24
+
- WebKit 26.0
25
+
26
+
This version was also tested against the following stable channels:
Copy file name to clipboardExpand all lines: docs/src/release-notes-java.md
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,35 @@ title: "Release notes"
4
4
toc_max_heading_level: 2
5
5
---
6
6
7
+
## Version 1.54
8
+
9
+
- New cookie property `partitionKey` in [`method: BrowserContext.cookies`] and [`method: BrowserContext.addCookies`]. This property allows to save and restore partitioned cookies. See [CHIPS MDN article](https://developer.mozilla.org/en-US/docs/Web/Privacy/Guides/Privacy_sandbox/Partitioned_cookies) for more information. Note that browsers have different support and defaults for cookie partitioning.
10
+
11
+
- New option `--user-data-dir` in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.
-`open` command does not open the test recorder anymore. Use `codegen` instead.
17
+
18
+
- Chromium has been changing WebGL support, based on the available GPU. There is a new flag `--enable-gpu` available in [chromium headless shell](./browsers.md#chromium-headless-shell) that you can try on your hardware.
19
+
20
+
### Browser Versions
21
+
22
+
- Chromium 139.0.7258.5
23
+
- Mozilla Firefox 140.0.2
24
+
- WebKit 26.0
25
+
26
+
This version was also tested against the following stable channels:
Copy file name to clipboardExpand all lines: docs/src/release-notes-js.md
+49-2Lines changed: 49 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,58 @@ toc_max_heading_level: 2
6
6
7
7
import LiteYouTube from '@site/src/components/LiteYouTube';
8
8
9
+
## Version 1.54
10
+
11
+
### Highlights
12
+
13
+
- New cookie property `partitionKey` in [`method: BrowserContext.cookies`] and [`method: BrowserContext.addCookies`]. This property allows to save and restore partitioned cookies. See [CHIPS MDN article](https://developer.mozilla.org/en-US/docs/Web/Privacy/Guides/Privacy_sandbox/Partitioned_cookies) for more information. Note that browsers have different support and defaults for cookie partitioning.
14
+
15
+
- New option `noSnippets` to disable snippets in the html report.
16
+
```js
17
+
import { defineConfig } from'@playwright/test';
18
+
19
+
exportdefaultdefineConfig({
20
+
reporter: [['html', { noSnippets:true }]]
21
+
});
22
+
```
23
+
24
+
- New property `location` in test annotations, for example in [`property: TestResult.annotations`] and [`property: TestInfo.annotations`]. It shows where the annotation like `test.skip` or `test.fixme` was added.
25
+
26
+
### Command Line
27
+
28
+
- New option `--user-data-dir` in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.
- Option `-gv` has been removed from the `npx playwright test` command. Use `--grep-invert` instead.
34
+
35
+
-`npx playwright open` does not open the test recorder anymore. Use `npx playwright codegen` instead.
36
+
37
+
### Miscellaneous
38
+
39
+
- Support for Node.js 16 has been removed.
40
+
41
+
- Support for Node.js 18 has been deprecated, and will be removed in the future.
42
+
43
+
- Chromium has been changing WebGL support, based on the available GPU. There is a new flag `--enable-gpu` available in [chromium headless shell](./browsers.md#chromium-headless-shell) that you can try on your hardware.
44
+
45
+
### Browser Versions
46
+
47
+
- Chromium 139.0.7258.5
48
+
- Mozilla Firefox 140.0.2
49
+
- WebKit 26.0
50
+
51
+
This version was also tested against the following stable channels:
Copy file name to clipboardExpand all lines: docs/src/release-notes-python.md
+26-2Lines changed: 26 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,11 +4,35 @@ title: "Release notes"
4
4
toc_max_heading_level: 2
5
5
---
6
6
7
+
## Version 1.54
8
+
9
+
- New cookie property `partition_key` in [`method: BrowserContext.cookies`] and [`method: BrowserContext.addCookies`]. This property allows to save and restore partitioned cookies. See [CHIPS MDN article](https://developer.mozilla.org/en-US/docs/Web/Privacy/Guides/Privacy_sandbox/Partitioned_cookies) for more information. Note that browsers have different support and defaults for cookie partitioning.
10
+
11
+
- New option `--user-data-dir` in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.
12
+
```bash
13
+
playwright codegen --user-data-dir=./user-data
14
+
```
15
+
16
+
-`playwright open` does not open the test recorder anymore. Use `playwright codegen` instead.
17
+
18
+
- Chromium has been changing WebGL support, based on the available GPU. There is a new flag `--enable-gpu` available in [chromium headless shell](./browsers.md#chromium-headless-shell) that you can try on your hardware.
19
+
20
+
### Browser Versions
21
+
22
+
- Chromium 139.0.7258.5
23
+
- Mozilla Firefox 140.0.2
24
+
- WebKit 26.0
25
+
26
+
This version was also tested against the following stable channels:
0 commit comments