@serenity-js/webdriverio 3.36.2 → 3.37.1

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +44 -23
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
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.1](https://github.com/serenity-js/serenity-js/compare/v3.37.0...v3.37.1) (2025-12-16)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update webdriverio dependencies ([dc0692a](https://github.com/serenity-js/serenity-js/commit/dc0692a12482f5a6c933db69ebe3b4a6a92d194e))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.37.0](https://github.com/serenity-js/serenity-js/compare/v3.36.2...v3.37.0) (2025-12-02)
18
+
19
+ **Note:** Version bump only for package @serenity-js/webdriverio
20
+
21
+
22
+
23
+
24
+
6
25
  ## [3.36.2](https://github.com/serenity-js/serenity-js/compare/v3.36.1...v3.36.2) (2025-11-26)
7
26
 
8
27
 
package/README.md CHANGED
@@ -1,7 +1,16 @@
1
+ # Serenity/JS WebdriverIO
2
+
3
+ [![NPM Version](https://badge.fury.io/js/%40serenity-js%2Fwebdriverio.svg)](https://badge.fury.io/js/%40serenity-js%2Fwebdriverio)
4
+ [![Build Status](https://github.com/serenity-js/serenity-js/actions/workflows/main.yaml/badge.svg?branch=main)](https://github.com/serenity-js/serenity-js/actions)
5
+ [![Maintainability](https://qlty.sh/gh/serenity-js/projects/serenity-js/maintainability.svg)](https://qlty.sh/gh/serenity-js/projects/serenity-js)
6
+ [![Code Coverage](https://qlty.sh/gh/serenity-js/projects/serenity-js/coverage.svg)](https://qlty.sh/gh/serenity-js/projects/serenity-js)
7
+ [![Contributors](https://img.shields.io/github/contributors/serenity-js/serenity-js.svg)](https://github.com/serenity-js/serenity-js/graphs/contributors)
8
+ [![Known Vulnerabilities](https://snyk.io/test/npm/@serenity-js/webdriverio/badge.svg)](https://snyk.io/test/npm/@serenity-js/webdriverio)
9
+ [![GitHub stars](https://img.shields.io/github/stars/serenity-js/serenity-js?style=flat)](https://github.com/serenity-js/serenity-js)
10
+
1
11
  [![Follow Serenity/JS on LinkedIn](https://img.shields.io/badge/Follow-Serenity%2FJS%20-0077B5?logo=linkedin)](https://www.linkedin.com/company/serenity-js)
2
12
  [![Watch Serenity/JS on YouTube](https://img.shields.io/badge/Watch-@serenity--js-E62117?logo=youtube)](https://www.youtube.com/@serenity-js)
3
13
  [![Join Serenity/JS Community Chat](https://img.shields.io/badge/Chat-Serenity%2FJS%20Community-FBD30B?logo=matrix)](https://matrix.to/#/#serenity-js:gitter.im)
4
- [![GitHub stars](https://img.shields.io/github/stars/serenity-js/serenity-js?label=Serenity%2FJS&logo=github&style=badge)](https://github.com/serenity-js/serenity-js)
5
14
  [![Support Serenity/JS on GitHub](https://img.shields.io/badge/Support-@serenity--js-703EC8?logo=github)](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
- ## 🚀 Why choose Serenity/JS?
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
- ## 🛠️ Get started in 3 steps
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
- ### 1. Using the WebdriverIO wizard
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
  [![Watch the video](https://img.youtube.com/vi/8mMY6Of4nCw/mqdefault.jpg)](https://youtu.be/8mMY6Of4nCw)
52
61
 
53
- ### 2. Writing a test scenario
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
- ### 3. Running your tests and generating reports
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
- ## 💡️ Learn Serenity/JS
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
- - [Serenity/JS WebdriverIO integration guide](https://serenity-js.org/handbook/test-runners/webdriverio/) - Integrate Serenity/JS with your WebdriverIO test suite, enable Serenity BDD reports, and start using the Screenplay Pattern
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
- ## 👋 Join the Serenity/JS Community
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
- - [Serenity/JS Community chat channel](https://matrix.to/#/#serenity-js:gitter.im) - Meet Serenity/JS developers and maintainers
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
- ## 📣 Stay up to date
140
+ ## Support
117
141
 
118
- - [Serenity/JS on YouTube](https://www.youtube.com/@serenity-js) - Subscribe for tutorials, demos, conference talks, and more
119
- - [Serenity/JS on LinkedIn](https://www.linkedin.com/company/serenity-js) - Follow for release and community event announcements
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
- Support our mission to make test automation collaborative and easier to scale. Become a Serenity/JS GitHub Sponsor today!
145
+ For corporate sponsorship or commercial support, please contact [Jan Molak](https://www.linkedin.com/in/janmolak/).
125
146
 
126
- [![GitHub Sponsors](https://img.shields.io/badge/Sponsor%20@serenity%2FJS-703EC8?style=for-the-badge&logo=github&logoColor=white)](https://github.com/sponsors/serenity-js)
147
+ [![GitHub Sponsors](https://img.shields.io/badge/Support%20@serenity%2FJS-703EC8?style=for-the-badge&logo=github&logoColor=white)](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.36.2",
3
+ "version": "3.37.1",
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.36.2",
78
- "@serenity-js/rest": "3.36.2",
79
- "@serenity-js/web": "3.36.2",
77
+ "@serenity-js/core": "3.37.1",
78
+ "@serenity-js/rest": "3.37.1",
79
+ "@serenity-js/web": "3.37.1",
80
80
  "@wdio/reporter": "9.20.0",
81
81
  "deepmerge": "4.3.1",
82
82
  "tiny-types": "1.24.3"
@@ -85,8 +85,8 @@
85
85
  "@serenity-js/cucumber": "^3.0.0",
86
86
  "@serenity-js/jasmine": "^3.0.0",
87
87
  "@serenity-js/mocha": "^3.0.0",
88
- "@wdio/cli": "^9.20.1",
89
- "webdriverio": "^9.20.1"
88
+ "@wdio/cli": "^9.21.1",
89
+ "webdriverio": "^9.21.0"
90
90
  },
91
91
  "peerDependenciesMeta": {
92
92
  "@serenity-js/cucumber": {
@@ -102,9 +102,9 @@
102
102
  "devDependencies": {
103
103
  "@integration/testing-tools": "3.0.0",
104
104
  "@types/mocha": "10.0.10",
105
- "@wdio/cli": "9.20.1",
105
+ "@wdio/cli": "9.21.1",
106
106
  "@wdio/dot-reporter": "9.20.0",
107
- "@wdio/local-runner": "9.20.1",
107
+ "@wdio/local-runner": "9.21.0",
108
108
  "@wdio/spec-reporter": "9.20.0",
109
109
  "@wdio/types": "9.20.0",
110
110
  "axios": "1.13.2",
@@ -114,7 +114,7 @@
114
114
  "mocha-multi": "1.1.7",
115
115
  "mocha-testdata": "1.2.0",
116
116
  "start-server-and-test": "2.1.3",
117
- "webdriverio": "9.20.1"
117
+ "webdriverio": "9.21.0"
118
118
  },
119
- "gitHead": "bce71a2454b8c6e2639bc351cc84f47c0c8cbb0a"
119
+ "gitHead": "0af3eff400cdb5adc9d7b92e87b09820c93d77c9"
120
120
  }