@serenity-js/web 3.31.9 → 3.31.12
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 +19 -0
- package/lib/screenplay/interactions/Click.d.ts +1 -1
- package/lib/screenplay/interactions/Click.js +1 -1
- package/lib/screenplay/interactions/DoubleClick.d.ts +3 -3
- package/lib/screenplay/interactions/DoubleClick.js +3 -3
- package/package.json +5 -5
- package/src/screenplay/interactions/Click.ts +1 -1
- package/src/screenplay/interactions/DoubleClick.ts +3 -3
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.31.12](https://github.com/serenity-js/serenity-js/compare/v3.31.11...v3.31.12) (2025-03-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @serenity-js/web
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [3.31.10](https://github.com/serenity-js/serenity-js/compare/v3.31.9...v3.31.10) (2025-03-05)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **deps:** update dependency typescript to v5.8.2 ([228c7fd](https://github.com/serenity-js/serenity-js/commit/228c7fddee3afcbf5015b147eeb816494ef6bd08))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [3.31.9](https://github.com/serenity-js/serenity-js/compare/v3.31.8...v3.31.9) (2025-02-20)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @serenity-js/web
|
|
@@ -22,7 +22,7 @@ const PageElementInteraction_1 = require("./PageElementInteraction");
|
|
|
22
22
|
*
|
|
23
23
|
* class Form {
|
|
24
24
|
* static exampleInput = () =>
|
|
25
|
-
* PageElement.located(
|
|
25
|
+
* PageElement.located(By.id('example'))
|
|
26
26
|
* .describedAs('example input')
|
|
27
27
|
* }
|
|
28
28
|
* ```
|
|
@@ -30,15 +30,15 @@ import { PageElementInteraction } from './PageElementInteraction';
|
|
|
30
30
|
*
|
|
31
31
|
* class UserProfile {
|
|
32
32
|
* static displayName = () =>
|
|
33
|
-
* PageElement.located(
|
|
33
|
+
* PageElement.located(By.id('display-name'))
|
|
34
34
|
* .describedAs('display name')
|
|
35
35
|
*
|
|
36
36
|
* static emailAddress = () =>
|
|
37
|
-
* PageElement.located(
|
|
37
|
+
* PageElement.located(By.id('email-address'))
|
|
38
38
|
* .describedAs('email address')
|
|
39
39
|
*
|
|
40
40
|
* static editor = () =>
|
|
41
|
-
* PageElement.located(
|
|
41
|
+
* PageElement.located(By.id('editor'))
|
|
42
42
|
* .describedAs('editor')
|
|
43
43
|
* }
|
|
44
44
|
* ```
|
|
@@ -32,15 +32,15 @@ const PageElementInteraction_1 = require("./PageElementInteraction");
|
|
|
32
32
|
*
|
|
33
33
|
* class UserProfile {
|
|
34
34
|
* static displayName = () =>
|
|
35
|
-
* PageElement.located(
|
|
35
|
+
* PageElement.located(By.id('display-name'))
|
|
36
36
|
* .describedAs('display name')
|
|
37
37
|
*
|
|
38
38
|
* static emailAddress = () =>
|
|
39
|
-
* PageElement.located(
|
|
39
|
+
* PageElement.located(By.id('email-address'))
|
|
40
40
|
* .describedAs('email address')
|
|
41
41
|
*
|
|
42
42
|
* static editor = () =>
|
|
43
|
-
* PageElement.located(
|
|
43
|
+
* PageElement.located(By.id('editor'))
|
|
44
44
|
* .describedAs('editor')
|
|
45
45
|
* }
|
|
46
46
|
* ```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/web",
|
|
3
|
-
"version": "3.31.
|
|
3
|
+
"version": "3.31.12",
|
|
4
4
|
"description": "Serenity/JS Screenplay Pattern library offering a flexible, web driver-agnostic approach for interacting with web-based user interfaces and components, suitable for various testing contexts",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"node": "^18.12 || ^20 || ^22"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@serenity-js/assertions": "3.31.
|
|
57
|
-
"@serenity-js/core": "3.31.
|
|
56
|
+
"@serenity-js/assertions": "3.31.12",
|
|
57
|
+
"@serenity-js/core": "3.31.12",
|
|
58
58
|
"tiny-types": "1.23.0"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"mocha": "11.1.0",
|
|
66
66
|
"mocha-multi": "1.1.7",
|
|
67
67
|
"ts-node": "10.9.2",
|
|
68
|
-
"typescript": "5.
|
|
68
|
+
"typescript": "5.8.2"
|
|
69
69
|
},
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "196bdd12efc4a03dcb03755faa551989e6e39bfe"
|
|
71
71
|
}
|
|
@@ -33,15 +33,15 @@ import { PageElementInteraction } from './PageElementInteraction';
|
|
|
33
33
|
*
|
|
34
34
|
* class UserProfile {
|
|
35
35
|
* static displayName = () =>
|
|
36
|
-
* PageElement.located(
|
|
36
|
+
* PageElement.located(By.id('display-name'))
|
|
37
37
|
* .describedAs('display name')
|
|
38
38
|
*
|
|
39
39
|
* static emailAddress = () =>
|
|
40
|
-
* PageElement.located(
|
|
40
|
+
* PageElement.located(By.id('email-address'))
|
|
41
41
|
* .describedAs('email address')
|
|
42
42
|
*
|
|
43
43
|
* static editor = () =>
|
|
44
|
-
* PageElement.located(
|
|
44
|
+
* PageElement.located(By.id('editor'))
|
|
45
45
|
* .describedAs('editor')
|
|
46
46
|
* }
|
|
47
47
|
* ```
|