@serenity-js/webdriverio 3.36.2 → 3.37.0
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 +8 -0
- package/README.md +44 -23
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.37.0](https://github.com/serenity-js/serenity-js/compare/v3.36.2...v3.37.0) (2025-12-02)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @serenity-js/webdriverio
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [3.36.2](https://github.com/serenity-js/serenity-js/compare/v3.36.1...v3.36.2) (2025-11-26)
|
|
7
15
|
|
|
8
16
|
|
package/README.md
CHANGED
|
@@ -1,7 +1,16 @@
|
|
|
1
|
+
# Serenity/JS WebdriverIO
|
|
2
|
+
|
|
3
|
+
[](https://badge.fury.io/js/%40serenity-js%2Fwebdriverio)
|
|
4
|
+
[](https://github.com/serenity-js/serenity-js/actions)
|
|
5
|
+
[](https://qlty.sh/gh/serenity-js/projects/serenity-js)
|
|
6
|
+
[](https://qlty.sh/gh/serenity-js/projects/serenity-js)
|
|
7
|
+
[](https://github.com/serenity-js/serenity-js/graphs/contributors)
|
|
8
|
+
[](https://snyk.io/test/npm/@serenity-js/webdriverio)
|
|
9
|
+
[](https://github.com/serenity-js/serenity-js)
|
|
10
|
+
|
|
1
11
|
[](https://www.linkedin.com/company/serenity-js)
|
|
2
12
|
[](https://www.youtube.com/@serenity-js)
|
|
3
13
|
[](https://matrix.to/#/#serenity-js:gitter.im)
|
|
4
|
-
[](https://github.com/serenity-js/serenity-js)
|
|
5
14
|
[](https://github.com/sponsors/serenity-js)
|
|
6
15
|
|
|
7
16
|
[Serenity/JS](https://serenity-js.org) revolutionises automated testing by enabling your team to write **expressive**, **maintainable tests** that align
|
|
@@ -12,20 +21,20 @@ and [**Jasmine**](https://serenity-js.org/handbook/test-runners/jasmine/),
|
|
|
12
21
|
Serenity/JS also offers **advanced reporting** that provides clear insights into test results,
|
|
13
22
|
helping both technical teams and business stakeholders understand the quality of the system under test.
|
|
14
23
|
|
|
15
|
-
##
|
|
24
|
+
## Features
|
|
16
25
|
|
|
17
26
|
- Write **expressive**, **maintainable** tests that align with your unique domain using the [**Serenity/JS Screenplay Pattern**](https://serenity-js.org/handbook/design/screenplay-pattern) APIs.
|
|
18
27
|
- **Leverage advanced reporting** to track progress, detect failures, and share results with both technical and business stakeholders.
|
|
19
28
|
- Build on flexible, modular, and extensible architecture that supports a wide range of test automation needs.
|
|
20
29
|
- Integrate with WebdriverIO and modern test automation tools.
|
|
21
30
|
|
|
22
|
-
##
|
|
31
|
+
## Quick Start
|
|
23
32
|
|
|
24
33
|
Serenity/JS integrates with the WebdriverIO command line wizard to help you set up a new project with the required dependencies, configuration and example tests.
|
|
25
34
|
|
|
26
35
|
If you prefer to review a reference implementation first or use it as a starting point for your project, you can clone a [Serenity/JS Project Template](https://serenity-js.org/handbook/project-templates/) for your preferred test runner.
|
|
27
36
|
|
|
28
|
-
###
|
|
37
|
+
### Creating a project
|
|
29
38
|
|
|
30
39
|
To use the WebdriverIO wizard to create a new project, run the following command in your computer terminal:
|
|
31
40
|
|
|
@@ -50,7 +59,7 @@ To create a Serenity/JS, WebdriverIO and Cucumber project, follow the tutorial:
|
|
|
50
59
|
|
|
51
60
|
[](https://youtu.be/8mMY6Of4nCw)
|
|
52
61
|
|
|
53
|
-
###
|
|
62
|
+
### Writing a test scenario
|
|
54
63
|
|
|
55
64
|
Assuming you've chosen **Mocha with Serenity/JS** and requested the wizard to generate example test files for you,
|
|
56
65
|
you'll find your first test file located at `./test/specs/example.spec.ts`:
|
|
@@ -89,7 +98,7 @@ You can learn more about these and other Serenity/JS modules in the [Serenity/JS
|
|
|
89
98
|
|
|
90
99
|
The configuration of your project is located in the `wdio.conf.ts` file. Check out the [Serenity/JS WebdriverIO integration guide](https://serenity-js.org/handbook/test-runners/webdriverio/) for more details.
|
|
91
100
|
|
|
92
|
-
###
|
|
101
|
+
### Running your tests and generating reports
|
|
93
102
|
|
|
94
103
|
To run your tests and generate Serenity/JS reports, execute the following command in your terminal:
|
|
95
104
|
|
|
@@ -100,27 +109,39 @@ npm run serenity
|
|
|
100
109
|
Your test results will be available in the `target/site/serenity` directory.
|
|
101
110
|
To view them, open the `index.html` file in your preferred web browser.
|
|
102
111
|
|
|
103
|
-
##
|
|
112
|
+
## Documentation
|
|
113
|
+
|
|
114
|
+
- [API Reference](https://serenity-js.org/api/)
|
|
115
|
+
- [Screenplay Pattern Guide](https://serenity-js.org/handbook/design/screenplay-pattern/)
|
|
116
|
+
- [Serenity/JS Project Templates](https://serenity-js.org/handbook/project-templates/)
|
|
117
|
+
- [More examples and reference implementations](https://github.com/serenity-js/serenity-js/tree/main/examples)
|
|
118
|
+
- [Tutorial: First Web Scenario](https://serenity-js.org/handbook/tutorials/your-first-web-scenario/)
|
|
119
|
+
- [Tutorial: First API Scenario](https://serenity-js.org/handbook/tutorials/your-first-api-scenario/)
|
|
120
|
+
|
|
121
|
+
## Contributing
|
|
122
|
+
|
|
123
|
+
Contributions of all kinds are welcome! Get started with the [Contributing Guide](https://serenity-js.org/community/contributing/).
|
|
124
|
+
|
|
125
|
+
## Community
|
|
126
|
+
|
|
127
|
+
- [Community Chat](https://matrix.to/#/#serenity-js:gitter.im)
|
|
128
|
+
- [Discussions Forum](https://github.com/orgs/serenity-js/discussions)
|
|
129
|
+
- Visit the [💡How to... ?](https://github.com/orgs/serenity-js/discussions/categories/how-to) section for answers to common questions
|
|
130
|
+
|
|
131
|
+
If you enjoy using Serenity/JS, make sure to star ⭐️ [Serenity/JS on GitHub](https://github.com/serenity-js/serenity-js) to help others discover the framework!
|
|
104
132
|
|
|
105
|
-
|
|
106
|
-
- [Serenity/JS Handbook](https://serenity-js.org/handbook/) - Write high-quality automated acceptance tests with Serenity/JS
|
|
107
|
-
- [Serenity/JS API documentation](https://serenity-js.org/api/) - Explore Serenity/JS modules and features
|
|
108
|
-
- [Serenity/JS Project Templates](https://serenity-js.org/handbook/project-templates/) - Kickstart your projects with best practices built right in
|
|
133
|
+
## License
|
|
109
134
|
|
|
110
|
-
|
|
135
|
+
The Serenity/JS code base is licensed under the [Apache-2.0](https://opensource.org/license/apache-2-0) license,
|
|
136
|
+
while its documentation and the [Serenity/JS Handbook](https://serenity-js.org/handbook/) are licensed under the [Creative Commons BY-NC-SA 4.0 International](https://creativecommons.org/licenses/by-nc-sa/4.0/).
|
|
111
137
|
|
|
112
|
-
|
|
113
|
-
- [Serenity/JS Forum](https://github.com/orgs/serenity-js/discussions/categories/how-to) - Find answers to your Serenity/JS questions
|
|
114
|
-
- [Contribute to Serenity/JS](https://serenity-js.org/community/contributing/) - Learn how to propose features, report bugs, and contribute to the Serenity/JS codebase
|
|
138
|
+
See the [Serenity/JS License](https://serenity-js.org/legal/license/).
|
|
115
139
|
|
|
116
|
-
##
|
|
140
|
+
## Support
|
|
117
141
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
- [Serenity/JS on GitHub](https://github.com/serenity-js/serenity-js) - Star Serenity/JS to help others discover the framework!
|
|
121
|
-
|
|
122
|
-
## 💛 Support Serenity/JS
|
|
142
|
+
Support ongoing development through [GitHub Sponsors](https://github.com/sponsors/serenity-js). Sponsors gain access to [Serenity/JS Playbooks](https://github.com/serenity-js/playbooks)
|
|
143
|
+
and priority help in the [Discussions Forum](https://github.com/orgs/serenity-js/discussions).
|
|
123
144
|
|
|
124
|
-
|
|
145
|
+
For corporate sponsorship or commercial support, please contact [Jan Molak](https://www.linkedin.com/in/janmolak/).
|
|
125
146
|
|
|
126
|
-
[](https://github.com/sponsors/serenity-js).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/webdriverio",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.37.0",
|
|
4
4
|
"description": "Adapter that integrates @serenity-js/web with the latest stable version of WebdriverIO, enabling Serenity/JS reporting and using the Screenplay Pattern to write web and mobile test scenarios",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -74,9 +74,9 @@
|
|
|
74
74
|
"node": "^20 || ^22 || ^24"
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
|
-
"@serenity-js/core": "3.
|
|
78
|
-
"@serenity-js/rest": "3.
|
|
79
|
-
"@serenity-js/web": "3.
|
|
77
|
+
"@serenity-js/core": "3.37.0",
|
|
78
|
+
"@serenity-js/rest": "3.37.0",
|
|
79
|
+
"@serenity-js/web": "3.37.0",
|
|
80
80
|
"@wdio/reporter": "9.20.0",
|
|
81
81
|
"deepmerge": "4.3.1",
|
|
82
82
|
"tiny-types": "1.24.3"
|
|
@@ -116,5 +116,5 @@
|
|
|
116
116
|
"start-server-and-test": "2.1.3",
|
|
117
117
|
"webdriverio": "9.20.1"
|
|
118
118
|
},
|
|
119
|
-
"gitHead": "
|
|
119
|
+
"gitHead": "dae146cd99a04f09b5926fb9d3205af562fa2927"
|
|
120
120
|
}
|