@applitools/core 4.54.4 → 4.55.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 +34 -0
- package/dist/check.js +1 -0
- package/dist/universal/spec-driver.js +3 -0
- package/package.json +9 -9
- package/types/universal/types.d.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.55.0](https://github.com/Applitools-Dev/sdk/compare/js/core@4.54.4...js/core@4.55.0) (2026-01-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* @applitools/driver bumped to 1.25.0
|
|
14
|
+
#### Features
|
|
15
|
+
|
|
16
|
+
* multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
|
|
17
|
+
* @applitools/spec-driver-puppeteer bumped to 1.7.0
|
|
18
|
+
#### Features
|
|
19
|
+
|
|
20
|
+
* multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
* @applitools/dom-snapshot bumped to 4.15.6
|
|
25
|
+
|
|
26
|
+
* @applitools/spec-driver-webdriver bumped to 1.5.5
|
|
27
|
+
|
|
28
|
+
* @applitools/spec-driver-selenium bumped to 1.7.11
|
|
29
|
+
|
|
30
|
+
* @applitools/screenshoter bumped to 3.12.12
|
|
31
|
+
|
|
32
|
+
* @applitools/nml-client bumped to 1.11.15
|
|
33
|
+
|
|
34
|
+
* @applitools/ec-client bumped to 1.12.17
|
|
35
|
+
|
|
36
|
+
|
|
3
37
|
## [4.54.4](https://github.com/Applitools-Dev/sdk/compare/js/core@4.54.3...js/core@4.54.4) (2026-01-19)
|
|
4
38
|
|
|
5
39
|
|
package/dist/check.js
CHANGED
|
@@ -76,6 +76,7 @@ function makeCheck({ type: defaultType = 'classic', eyes, target: defaultTarget,
|
|
|
76
76
|
const driver = (0, driver_1.isDriver)(target, spec)
|
|
77
77
|
? await (0, driver_1.makeDriver)({ spec, driver: target, reset: target === defaultTarget, logger })
|
|
78
78
|
: null;
|
|
79
|
+
await (driver === null || driver === void 0 ? void 0 : driver.bringToFront());
|
|
79
80
|
const typedEyes = await eyes.getTypedEyes({ type, logger });
|
|
80
81
|
return typedEyes.check({ target: driver !== null && driver !== void 0 ? driver : target, settings, logger });
|
|
81
82
|
};
|
|
@@ -160,6 +160,9 @@ function makeSpec({ socket, spec, }) {
|
|
|
160
160
|
async executeBrowserCommands(driver, commands) {
|
|
161
161
|
return socket.request('Driver.executeBrowserCommands', { driver, commands });
|
|
162
162
|
},
|
|
163
|
+
async bringToFront(driver) {
|
|
164
|
+
return socket.request('Driver.bringToFront', { driver });
|
|
165
|
+
},
|
|
163
166
|
};
|
|
164
167
|
// add default commands to spec (if not already there) such as `isUserFunction`
|
|
165
168
|
spec = addDefaultCommands(spec);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.55.0",
|
|
4
4
|
"homepage": "https://applitools.com",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/applitools/eyes.sdk.javascript1/issues"
|
|
@@ -82,16 +82,16 @@
|
|
|
82
82
|
"dependencies": {
|
|
83
83
|
"@applitools/core-base": "1.31.1",
|
|
84
84
|
"@applitools/dom-capture": "11.6.8",
|
|
85
|
-
"@applitools/dom-snapshot": "4.15.
|
|
86
|
-
"@applitools/driver": "1.
|
|
87
|
-
"@applitools/ec-client": "1.12.
|
|
85
|
+
"@applitools/dom-snapshot": "4.15.6",
|
|
86
|
+
"@applitools/driver": "1.25.0",
|
|
87
|
+
"@applitools/ec-client": "1.12.17",
|
|
88
88
|
"@applitools/logger": "2.2.7",
|
|
89
|
-
"@applitools/nml-client": "1.11.
|
|
89
|
+
"@applitools/nml-client": "1.11.15",
|
|
90
90
|
"@applitools/req": "1.8.7",
|
|
91
|
-
"@applitools/screenshoter": "3.12.
|
|
91
|
+
"@applitools/screenshoter": "3.12.12",
|
|
92
92
|
"@applitools/snippets": "2.7.0",
|
|
93
93
|
"@applitools/socket": "1.3.8",
|
|
94
|
-
"@applitools/spec-driver-webdriver": "1.5.
|
|
94
|
+
"@applitools/spec-driver-webdriver": "1.5.5",
|
|
95
95
|
"@applitools/ufg-client": "1.18.3",
|
|
96
96
|
"@applitools/utils": "1.14.1",
|
|
97
97
|
"@types/ws": "8.5.5",
|
|
@@ -107,8 +107,8 @@
|
|
|
107
107
|
"devDependencies": {
|
|
108
108
|
"@applitools/bongo": "^5.10.0",
|
|
109
109
|
"@applitools/sea": "^1.0.0",
|
|
110
|
-
"@applitools/spec-driver-puppeteer": "^1.
|
|
111
|
-
"@applitools/spec-driver-selenium": "^1.7.
|
|
110
|
+
"@applitools/spec-driver-puppeteer": "^1.7.0",
|
|
111
|
+
"@applitools/spec-driver-selenium": "^1.7.11",
|
|
112
112
|
"@applitools/test-server": "^1.3.5",
|
|
113
113
|
"@applitools/test-utils": "^1.5.17",
|
|
114
114
|
"@applitools/tunnel-client": "^1.11.5",
|