@serenity-js/playwright 3.43.0 → 3.43.2
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.
- package/CHANGELOG.md +22 -0
- package/esm/screenplay/abilities/BrowseTheWebWithPlaywright.d.ts +1 -1
- package/esm/screenplay/abilities/BrowseTheWebWithPlaywright.js +1 -1
- package/lib/screenplay/abilities/BrowseTheWebWithPlaywright.d.ts +1 -1
- package/lib/screenplay/abilities/BrowseTheWebWithPlaywright.js +1 -1
- package/package.json +7 -7
- package/src/screenplay/abilities/BrowseTheWebWithPlaywright.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.43.2](https://github.com/serenity-js/serenity-js/compare/v3.43.1...v3.43.2) (2026-05-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update playwright dependencies to v1.60.0 ([e0fab63](https://github.com/serenity-js/serenity-js/commit/e0fab633109ebe5abcd978ed9db0b2c21480f912))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [3.43.1](https://github.com/serenity-js/serenity-js/compare/v3.43.0...v3.43.1) (2026-05-11)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **core:** updated API docs ([38b86f4](https://github.com/serenity-js/serenity-js/commit/38b86f4190b5d3c6a64fd0042c87ac187f847f89))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [3.43.0](https://github.com/serenity-js/serenity-js/compare/v3.42.2...v3.43.0) (2026-05-11)
|
|
7
29
|
|
|
8
30
|
|
|
@@ -214,7 +214,7 @@ export declare class BrowseTheWebWithPlaywright extends BrowseTheWeb<playwright.
|
|
|
214
214
|
*
|
|
215
215
|
* #### Learn more
|
|
216
216
|
* - [`PlaywrightBrowsingSession.closeAllPages`](https://serenity-js.org/api/playwright/class/PlaywrightBrowsingSession/#closeAllPages)
|
|
217
|
-
* - [`Discardable`](https://serenity-js.org/api/core/
|
|
217
|
+
* - [`Discardable`](https://serenity-js.org/api/core/class/Discardable/)
|
|
218
218
|
*/
|
|
219
219
|
discard(): Promise<void>;
|
|
220
220
|
}
|
|
@@ -229,7 +229,7 @@ export class BrowseTheWebWithPlaywright extends BrowseTheWeb {
|
|
|
229
229
|
*
|
|
230
230
|
* #### Learn more
|
|
231
231
|
* - [`PlaywrightBrowsingSession.closeAllPages`](https://serenity-js.org/api/playwright/class/PlaywrightBrowsingSession/#closeAllPages)
|
|
232
|
-
* - [`Discardable`](https://serenity-js.org/api/core/
|
|
232
|
+
* - [`Discardable`](https://serenity-js.org/api/core/class/Discardable/)
|
|
233
233
|
*/
|
|
234
234
|
async discard() {
|
|
235
235
|
if (Discardable.isDiscardable(this.session)) {
|
|
@@ -214,7 +214,7 @@ export declare class BrowseTheWebWithPlaywright extends BrowseTheWeb<playwright.
|
|
|
214
214
|
*
|
|
215
215
|
* #### Learn more
|
|
216
216
|
* - [`PlaywrightBrowsingSession.closeAllPages`](https://serenity-js.org/api/playwright/class/PlaywrightBrowsingSession/#closeAllPages)
|
|
217
|
-
* - [`Discardable`](https://serenity-js.org/api/core/
|
|
217
|
+
* - [`Discardable`](https://serenity-js.org/api/core/class/Discardable/)
|
|
218
218
|
*/
|
|
219
219
|
discard(): Promise<void>;
|
|
220
220
|
}
|
|
@@ -265,7 +265,7 @@ class BrowseTheWebWithPlaywright extends web_1.BrowseTheWeb {
|
|
|
265
265
|
*
|
|
266
266
|
* #### Learn more
|
|
267
267
|
* - [`PlaywrightBrowsingSession.closeAllPages`](https://serenity-js.org/api/playwright/class/PlaywrightBrowsingSession/#closeAllPages)
|
|
268
|
-
* - [`Discardable`](https://serenity-js.org/api/core/
|
|
268
|
+
* - [`Discardable`](https://serenity-js.org/api/core/class/Discardable/)
|
|
269
269
|
*/
|
|
270
270
|
async discard() {
|
|
271
271
|
if (core_1.Discardable.isDiscardable(this.session)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/playwright",
|
|
3
|
-
"version": "3.43.
|
|
3
|
+
"version": "3.43.2",
|
|
4
4
|
"description": "Adapter that integrates @serenity-js/web with Playwright, enabling Serenity/JS reporting and using the Screenplay Pattern to write component and end-to-end test scenarios",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -78,12 +78,12 @@
|
|
|
78
78
|
"node": "^20 || ^22 || ^24"
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
|
-
"@serenity-js/core": "3.43.
|
|
82
|
-
"@serenity-js/web": "3.43.
|
|
81
|
+
"@serenity-js/core": "3.43.2",
|
|
82
|
+
"@serenity-js/web": "3.43.2",
|
|
83
83
|
"tiny-types": "2.0.5"
|
|
84
84
|
},
|
|
85
85
|
"peerDependencies": {
|
|
86
|
-
"playwright-core": "~1.
|
|
86
|
+
"playwright-core": "~1.60.0"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@integration/testing-tools": "3.0.0",
|
|
@@ -96,12 +96,12 @@
|
|
|
96
96
|
"chai-as-promised": "7.1.2",
|
|
97
97
|
"mocha": "11.7.5",
|
|
98
98
|
"mocha-multi": "1.1.7",
|
|
99
|
-
"playwright-core": "1.
|
|
99
|
+
"playwright-core": "1.60.0",
|
|
100
100
|
"sinon": "20.0.0",
|
|
101
101
|
"sinon-chai": "3.7.0",
|
|
102
102
|
"tiny-types": "2.0.5",
|
|
103
|
-
"tsx": "4.
|
|
103
|
+
"tsx": "4.21.0",
|
|
104
104
|
"typescript": "5.9.3"
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "df42aa042648f878111b6217cda68e5d0faa430e"
|
|
107
107
|
}
|
|
@@ -272,7 +272,7 @@ export class BrowseTheWebWithPlaywright
|
|
|
272
272
|
*
|
|
273
273
|
* #### Learn more
|
|
274
274
|
* - [`PlaywrightBrowsingSession.closeAllPages`](https://serenity-js.org/api/playwright/class/PlaywrightBrowsingSession/#closeAllPages)
|
|
275
|
-
* - [`Discardable`](https://serenity-js.org/api/core/
|
|
275
|
+
* - [`Discardable`](https://serenity-js.org/api/core/class/Discardable/)
|
|
276
276
|
*/
|
|
277
277
|
async discard(): Promise<void> {
|
|
278
278
|
if (Discardable.isDiscardable(this.session)) {
|