playwright 1.54.0-alpha-2025-06-30 → 1.54.0-alpha-2025-07-02
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of playwright might be problematic. Click here for more details.
- package/README.md +2 -2
- package/lib/reporters/merge.js +1 -1
- package/lib/runner/testServer.js +1 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# 🎭 Playwright
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/playwright) <!-- GEN:chromium-version-badge -->[](https://www.npmjs.com/package/playwright) <!-- GEN:chromium-version-badge -->[](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge -->[](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> <!-- GEN:webkit-version-badge -->[](https://webkit.org/)<!-- GEN:stop --> [](https://aka.ms/playwright/discord)
|
|
4
4
|
|
|
5
5
|
## [Documentation](https://playwright.dev) | [API reference](https://playwright.dev/docs/api/class-playwright)
|
|
6
6
|
|
|
@@ -8,7 +8,7 @@ Playwright is a framework for Web Testing and Automation. It allows testing [Chr
|
|
|
8
8
|
|
|
9
9
|
| | Linux | macOS | Windows |
|
|
10
10
|
| :--- | :---: | :---: | :---: |
|
|
11
|
-
| Chromium <!-- GEN:chromium-version -->
|
|
11
|
+
| Chromium <!-- GEN:chromium-version -->139.0.7258.5<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
|
12
12
|
| WebKit <!-- GEN:webkit-version -->18.5<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
|
13
13
|
| Firefox <!-- GEN:firefox-version -->139.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
|
14
14
|
|
package/lib/reporters/merge.js
CHANGED
|
@@ -334,7 +334,7 @@ class IdsPatcher {
|
|
|
334
334
|
case "onStepBegin":
|
|
335
335
|
case "onStepEnd":
|
|
336
336
|
case "onStdIO":
|
|
337
|
-
params.testId = this._mapTestId(params.testId);
|
|
337
|
+
params.testId = params.testId ? this._mapTestId(params.testId) : void 0;
|
|
338
338
|
return;
|
|
339
339
|
case "onTestEnd":
|
|
340
340
|
params.test.testId = this._mapTestId(params.test.testId);
|
package/lib/runner/testServer.js
CHANGED
|
@@ -399,8 +399,7 @@ async function runUIMode(configFile, configCLIOverrides, options) {
|
|
|
399
399
|
headless: (0, import_utils.isUnderTest)() && process.env.PWTEST_HEADED_FOR_TEST !== "1",
|
|
400
400
|
persistentContextOptions: {
|
|
401
401
|
handleSIGINT: false,
|
|
402
|
-
channel
|
|
403
|
-
timeout: 0
|
|
402
|
+
channel
|
|
404
403
|
}
|
|
405
404
|
});
|
|
406
405
|
page.on("close", () => cancelPromise.resolve());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "playwright",
|
|
3
|
-
"version": "1.54.0-alpha-2025-
|
|
3
|
+
"version": "1.54.0-alpha-2025-07-02",
|
|
4
4
|
"description": "A high-level API to automate web browsers",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
},
|
|
57
57
|
"license": "Apache-2.0",
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"playwright-core": "1.54.0-alpha-2025-
|
|
59
|
+
"playwright-core": "1.54.0-alpha-2025-07-02"
|
|
60
60
|
},
|
|
61
61
|
"optionalDependencies": {
|
|
62
62
|
"fsevents": "2.3.2"
|