@applitools/core 4.64.0 → 4.65.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 +68 -0
- package/dist/ufg/utils/take-dom-snapshot.js +7 -2
- package/package.json +15 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,73 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.65.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.64.1...js/core@4.65.0) (2026-06-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add useLatestEnvBaseline to session startInfo | AD-14089 ([#3887](https://github.com/Applitools-Dev/sdk/issues/3887)) ([b15b9af](https://github.com/Applitools-Dev/sdk/commit/b15b9af34328193f6705c90a26c24aa1e4b23d1c))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* @applitools/dom-snapshot bumped to 4.17.3
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
* @applitools/snippets bumped to 2.9.3
|
|
26
|
+
#### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* capture opaque-origin sandboxed blob iframes in UFG | FLD-4606 ([#3916](https://github.com/Applitools-Dev/sdk/issues/3916)) ([9296f7e](https://github.com/Applitools-Dev/sdk/commit/9296f7ef9fe3aa3889402009860ef5e3276f0303))
|
|
29
|
+
* @applitools/driver bumped to 1.26.3
|
|
30
|
+
|
|
31
|
+
* @applitools/spec-driver-webdriver bumped to 1.6.3
|
|
32
|
+
|
|
33
|
+
* @applitools/spec-driver-selenium bumped to 1.8.3
|
|
34
|
+
|
|
35
|
+
* @applitools/spec-driver-playwright bumped to 1.9.3
|
|
36
|
+
|
|
37
|
+
* @applitools/spec-driver-puppeteer bumped to 1.8.3
|
|
38
|
+
|
|
39
|
+
* @applitools/screenshoter bumped to 3.12.22
|
|
40
|
+
|
|
41
|
+
* @applitools/nml-client bumped to 1.11.31
|
|
42
|
+
|
|
43
|
+
* @applitools/ec-client bumped to 1.12.33
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
## [4.64.1](https://github.com/Applitools-Dev/sdk/compare/js/core@4.64.0...js/core@4.64.1) (2026-06-09)
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Dependencies
|
|
50
|
+
|
|
51
|
+
* @applitools/req bumped to 1.11.0
|
|
52
|
+
#### Features
|
|
53
|
+
|
|
54
|
+
* add HTTP/2 proxy support (AD-13916) ([#3860](https://github.com/Applitools-Dev/sdk/issues/3860)) ([87cfb3e](https://github.com/Applitools-Dev/sdk/commit/87cfb3e2772cc8443d961b7916cc701f894b84cb))
|
|
55
|
+
* @applitools/nml-client bumped to 1.11.30
|
|
56
|
+
|
|
57
|
+
* @applitools/tunnel-client bumped to 1.12.0
|
|
58
|
+
#### Features
|
|
59
|
+
|
|
60
|
+
* add PAC-file proxy routing for tunnel agent | FLD-3783 ([#3897](https://github.com/Applitools-Dev/sdk/issues/3897)) ([e4f5818](https://github.com/Applitools-Dev/sdk/commit/e4f58181f4e835c9823915ecab9e99a9e150e493))
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
* @applitools/ufg-client bumped to 1.22.3
|
|
65
|
+
|
|
66
|
+
* @applitools/core-base bumped to 1.35.1
|
|
67
|
+
|
|
68
|
+
* @applitools/ec-client bumped to 1.12.32
|
|
69
|
+
|
|
70
|
+
|
|
3
71
|
## [4.64.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.63.1...js/core@4.64.0) (2026-06-04)
|
|
4
72
|
|
|
5
73
|
|
|
@@ -81,10 +81,15 @@ async function takeDomSnapshot({ context, settings, logger, }) {
|
|
|
81
81
|
.context(reference)
|
|
82
82
|
.then(context => context.focus())
|
|
83
83
|
.catch(err => {
|
|
84
|
-
var _a;
|
|
84
|
+
var _a, _b;
|
|
85
85
|
const srcAttr = (_a = cdtNode.attributes) === null || _a === void 0 ? void 0 : _a.find(attr => attr.name === 'src');
|
|
86
|
-
if (srcAttr)
|
|
86
|
+
if (srcAttr) {
|
|
87
|
+
// Frame couldn't be captured: blank the active src so the renderer treats it
|
|
88
|
+
// as uncaptured rather than navigating a URL we have no content for, but keep
|
|
89
|
+
// the original on a debug attribute.
|
|
90
|
+
(_b = cdtNode.attributes) === null || _b === void 0 ? void 0 : _b.push({ name: 'data-applitools-original-src', value: srcAttr.value });
|
|
87
91
|
srcAttr.value = '';
|
|
92
|
+
}
|
|
88
93
|
logger.log(`could not switch to frame during takeDomSnapshot. Path to frame: ${JSON.stringify(reference)}`, err);
|
|
89
94
|
});
|
|
90
95
|
if (frameContext) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.65.0",
|
|
4
4
|
"homepage": "https://applitools.com",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
|
|
@@ -61,18 +61,18 @@
|
|
|
61
61
|
"setup:standalone": "sh -c 'yarn chromedriver --port=4444 --verbose &'"
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
|
-
"@applitools/core-base": "1.35.
|
|
64
|
+
"@applitools/core-base": "1.35.1",
|
|
65
65
|
"@applitools/dom-capture": "11.8.1",
|
|
66
|
-
"@applitools/dom-snapshot": "4.17.
|
|
67
|
-
"@applitools/driver": "1.26.
|
|
68
|
-
"@applitools/ec-client": "1.12.
|
|
66
|
+
"@applitools/dom-snapshot": "4.17.3",
|
|
67
|
+
"@applitools/driver": "1.26.3",
|
|
68
|
+
"@applitools/ec-client": "1.12.33",
|
|
69
69
|
"@applitools/logger": "2.2.12",
|
|
70
|
-
"@applitools/nml-client": "1.11.
|
|
71
|
-
"@applitools/req": "1.
|
|
72
|
-
"@applitools/screenshoter": "3.12.
|
|
73
|
-
"@applitools/snippets": "2.9.
|
|
70
|
+
"@applitools/nml-client": "1.11.31",
|
|
71
|
+
"@applitools/req": "1.11.0",
|
|
72
|
+
"@applitools/screenshoter": "3.12.22",
|
|
73
|
+
"@applitools/snippets": "2.9.3",
|
|
74
74
|
"@applitools/socket": "1.3.13",
|
|
75
|
-
"@applitools/ufg-client": "1.22.
|
|
75
|
+
"@applitools/ufg-client": "1.22.3",
|
|
76
76
|
"@applitools/utils": "1.14.5",
|
|
77
77
|
"abort-controller": "3.0.0",
|
|
78
78
|
"chalk": "4.1.2",
|
|
@@ -82,12 +82,13 @@
|
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
84
|
"@applitools/bongo": "^5.10.0",
|
|
85
|
-
"@applitools/spec-driver-playwright": "^1.9.
|
|
86
|
-
"@applitools/spec-driver-puppeteer": "^1.8.
|
|
87
|
-
"@applitools/spec-driver-selenium": "^1.8.
|
|
85
|
+
"@applitools/spec-driver-playwright": "^1.9.3",
|
|
86
|
+
"@applitools/spec-driver-puppeteer": "^1.8.3",
|
|
87
|
+
"@applitools/spec-driver-selenium": "^1.8.3",
|
|
88
|
+
"@applitools/spec-driver-webdriver": "^1.6.3",
|
|
88
89
|
"@applitools/test-server": "^1.4.4",
|
|
89
90
|
"@applitools/test-utils": "^1.5.17",
|
|
90
|
-
"@applitools/tunnel-client": "^1.
|
|
91
|
+
"@applitools/tunnel-client": "^1.12.0",
|
|
91
92
|
"@swc-node/register": "^1.6.8",
|
|
92
93
|
"@types/mocha": "^10.0.7",
|
|
93
94
|
"@types/node": "^12.20.55",
|