@serenity-js/playwright 3.31.12 → 3.31.13
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 +11 -0
- package/README.md +5 -6
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.31.13](https://github.com/serenity-js/serenity-js/compare/v3.31.12...v3.31.13) (2025-03-20)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update playwright dependencies to v1.51.1 ([8d059c2](https://github.com/serenity-js/serenity-js/commit/8d059c2fb9ec5d6091b664a24a771205d96f2040))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [3.31.12](https://github.com/serenity-js/serenity-js/compare/v3.31.11...v3.31.12) (2025-03-12)
|
|
7
18
|
|
|
8
19
|
|
package/README.md
CHANGED
|
@@ -10,9 +10,10 @@ of complex software systems faster, more collaborative and easier to scale.
|
|
|
10
10
|
|
|
11
11
|
⭐️ Get started with Serenity/JS!
|
|
12
12
|
- [Serenity/JS web testing tutorial](https://serenity-js.org/handbook/web-testing/your-first-web-scenario)
|
|
13
|
-
- [Serenity/JS
|
|
13
|
+
- [Serenity/JS + Playwright Test deep dive](https://serenity-js.org/handbook/test-runners/playwright-test/)
|
|
14
|
+
- [Serenity/JS Handbook](https://serenity-js.org/handbook)
|
|
14
15
|
- [API documentation](https://serenity-js.org/api/)
|
|
15
|
-
- [Serenity/JS Project Templates](https://serenity-js.org/handbook/
|
|
16
|
+
- [Serenity/JS Project Templates](https://serenity-js.org/handbook/project-templates/)
|
|
16
17
|
|
|
17
18
|
👋 Join the Serenity/JS Community!
|
|
18
19
|
- Meet other Serenity/JS developers and maintainers on the [Serenity/JS Community chat channel](https://matrix.to/#/#serenity-js:gitter.im),
|
|
@@ -23,7 +24,7 @@ of complex software systems faster, more collaborative and easier to scale.
|
|
|
23
24
|
## Serenity/JS Playwright
|
|
24
25
|
|
|
25
26
|
[`@serenity-js/playwright`](https://serenity-js.org/api/playwright/) module is a [Screenplay Pattern](https://serenity-js.org/handbook/design/screenplay-pattern/)-style adapter
|
|
26
|
-
for [Playwright](https://playwright.dev/), that helps with testing
|
|
27
|
+
for [Playwright](https://playwright.dev/), that helps with testing web-based apps.
|
|
27
28
|
|
|
28
29
|
### Installation
|
|
29
30
|
|
|
@@ -33,11 +34,9 @@ To install this module, run the following command in your [Playwright project di
|
|
|
33
34
|
npm install --save-dev @serenity-js/assertions @serenity-js/console-reporter @serenity-js/core @serenity-js/serenity-bdd @serenity-js/web @serenity-js/playwright
|
|
34
35
|
```
|
|
35
36
|
|
|
36
|
-
To learn more about Serenity/JS and how to use it on your project, follow the [Serenity/JS Getting Started guide](https://serenity-js.org/handbook/getting-started/).
|
|
37
|
-
|
|
38
37
|
## Usage with `@playwright/test`
|
|
39
38
|
|
|
40
|
-
Follow the [Serenity/JS
|
|
39
|
+
Follow the [Using Serenity/JS with Playwright Test guide](https://serenity-js.org/handbook/test-runners/playwright-test/)
|
|
41
40
|
|
|
42
41
|
## Usage with Cucumber
|
|
43
42
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/playwright",
|
|
3
|
-
"version": "3.31.
|
|
3
|
+
"version": "3.31.13",
|
|
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",
|
|
@@ -57,12 +57,12 @@
|
|
|
57
57
|
"node": "^18.12 || ^20 || ^22"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@serenity-js/core": "3.31.
|
|
61
|
-
"@serenity-js/web": "3.31.
|
|
60
|
+
"@serenity-js/core": "3.31.13",
|
|
61
|
+
"@serenity-js/web": "3.31.13",
|
|
62
62
|
"tiny-types": "1.23.0"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"playwright-core": "~1.51.
|
|
65
|
+
"playwright-core": "~1.51.1"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@integration/testing-tools": "3.0.0",
|
|
@@ -71,9 +71,9 @@
|
|
|
71
71
|
"c8": "10.1.3",
|
|
72
72
|
"mocha": "11.1.0",
|
|
73
73
|
"mocha-multi": "1.1.7",
|
|
74
|
-
"playwright-core": "1.51.
|
|
74
|
+
"playwright-core": "1.51.1",
|
|
75
75
|
"ts-node": "10.9.2",
|
|
76
76
|
"typescript": "5.8.2"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "4f4a4d87b439afb43d81cd5a38ffaca43cec420d"
|
|
79
79
|
}
|