@applitools/ec-client 1.8.8 → 1.8.9
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 +17 -0
- package/dist/server.js +4 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.8.9](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.8.8...js/ec-client@1.8.9) (2024-06-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* shadow dom self healing ([#2375](https://github.com/Applitools-Dev/sdk/issues/2375)) ([4d3a88c](https://github.com/Applitools-Dev/sdk/commit/4d3a88cbc3e05c3dd317afbb5de8d677368c346d))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/spec-driver-webdriver bumped to 1.1.9
|
|
14
|
+
|
|
15
|
+
* @applitools/driver bumped to 1.17.4
|
|
16
|
+
#### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* cache nml client per driver session ([#2368](https://github.com/Applitools-Dev/sdk/issues/2368)) ([5840389](https://github.com/Applitools-Dev/sdk/commit/5840389f74111c0e0e68026389c755c59a027b74))
|
|
19
|
+
|
|
3
20
|
## [1.8.8](https://github.com/Applitools-Dev/sdk/compare/js/ec-client@1.8.7...js/ec-client@1.8.8) (2024-06-01)
|
|
4
21
|
|
|
5
22
|
|
package/dist/server.js
CHANGED
|
@@ -79,6 +79,10 @@ async function makeServer({ settings, logger: mainLogger, }) {
|
|
|
79
79
|
const session = sessions.get(match.groups.sessionId);
|
|
80
80
|
await commands.findElement({ session, request, response, logger: requestLogger });
|
|
81
81
|
});
|
|
82
|
+
router.post('/session/:sessionId/shadow/:shadowId/element', async ({ match }) => {
|
|
83
|
+
const session = sessions.get(match.groups.sessionId);
|
|
84
|
+
await commands.findElement({ session, request, response, logger: requestLogger });
|
|
85
|
+
});
|
|
82
86
|
router.delete('/session/:sessionId', async ({ match }) => {
|
|
83
87
|
const session = sessions.get(match.groups.sessionId);
|
|
84
88
|
await commands.endSession({ session, request, response, logger: requestLogger });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/ec-client",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.9",
|
|
4
4
|
"homepage": "https://applitools.com",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
|
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@applitools/core-base": "1.15.2",
|
|
56
|
-
"@applitools/driver": "1.17.
|
|
56
|
+
"@applitools/driver": "1.17.4",
|
|
57
57
|
"@applitools/logger": "2.0.17",
|
|
58
58
|
"@applitools/req": "1.7.1",
|
|
59
59
|
"@applitools/socket": "1.1.17",
|
|
60
|
-
"@applitools/spec-driver-webdriver": "1.1.
|
|
60
|
+
"@applitools/spec-driver-webdriver": "1.1.9",
|
|
61
61
|
"@applitools/tunnel-client": "1.5.4",
|
|
62
62
|
"@applitools/utils": "1.7.3",
|
|
63
63
|
"abort-controller": "3.0.0",
|