@applitools/eyes-testcafe 6.3.20 → 6.3.22
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 +60 -0
- package/package.json +3 -3
- package/types/index.d.ts +7 -1
package/CHANGELOG.md
CHANGED
|
@@ -13,6 +13,66 @@
|
|
|
13
13
|
|
|
14
14
|
|
|
15
15
|
|
|
16
|
+
## [6.3.22](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.21...js/eyes-testcafe@6.3.22) (2026-01-19)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Dependencies
|
|
20
|
+
|
|
21
|
+
* @applitools/dom-snapshot bumped to 4.15.6
|
|
22
|
+
|
|
23
|
+
* @applitools/driver bumped to 1.25.0
|
|
24
|
+
#### Features
|
|
25
|
+
|
|
26
|
+
* multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
|
|
27
|
+
* @applitools/spec-driver-puppeteer bumped to 1.7.0
|
|
28
|
+
#### Features
|
|
29
|
+
|
|
30
|
+
* multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
* @applitools/core bumped to 4.55.0
|
|
35
|
+
#### Features
|
|
36
|
+
|
|
37
|
+
* multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
* @applitools/spec-driver-webdriver bumped to 1.5.5
|
|
42
|
+
|
|
43
|
+
* @applitools/spec-driver-selenium bumped to 1.7.11
|
|
44
|
+
|
|
45
|
+
* @applitools/screenshoter bumped to 3.12.12
|
|
46
|
+
|
|
47
|
+
* @applitools/nml-client bumped to 1.11.15
|
|
48
|
+
|
|
49
|
+
* @applitools/ec-client bumped to 1.12.17
|
|
50
|
+
|
|
51
|
+
* @applitools/eyes bumped to 1.38.0
|
|
52
|
+
#### Features
|
|
53
|
+
|
|
54
|
+
* multi-page support - FLD-3827 ([#3410](https://github.com/Applitools-Dev/sdk/issues/3410)) ([a55b982](https://github.com/Applitools-Dev/sdk/commit/a55b9827c2218c11da5ed61b38bf12a70ce4c8db))
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
## [6.3.21](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.20...js/eyes-testcafe@6.3.21) (2026-01-14)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Dependencies
|
|
63
|
+
|
|
64
|
+
* @applitools/core bumped to 4.54.3
|
|
65
|
+
#### Bug Fixes
|
|
66
|
+
|
|
67
|
+
* `close`/`getResults` race condition ([#3450](https://github.com/Applitools-Dev/sdk/issues/3450)) ([2e5437d](https://github.com/Applitools-Dev/sdk/commit/2e5437dcfde6fda58d76227659ee249bfa3885a7))
|
|
68
|
+
* @applitools/eyes bumped to 1.37.0
|
|
69
|
+
#### Features
|
|
70
|
+
|
|
71
|
+
* expose buildId in BatchInfo type | FLD-4020 ([#3466](https://github.com/Applitools-Dev/sdk/issues/3466)) ([7868ba0](https://github.com/Applitools-Dev/sdk/commit/7868ba08de9a9d348c42d8eac5a953dce44844d0))
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
16
76
|
## [6.3.20](https://github.com/Applitools-Dev/sdk/compare/js/eyes-testcafe@6.3.19...js/eyes-testcafe@6.3.20) (2026-01-11)
|
|
17
77
|
|
|
18
78
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-testcafe",
|
|
3
|
-
"version": "6.3.
|
|
3
|
+
"version": "6.3.22",
|
|
4
4
|
"description": "Applitools Eyes SDK for TestCafe",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eyes-testcafe",
|
|
@@ -68,8 +68,8 @@
|
|
|
68
68
|
"up:framework": "echo \"$(jq '.devDependencies.testcafe = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"@applitools/driver": "1.
|
|
72
|
-
"@applitools/eyes": "1.
|
|
71
|
+
"@applitools/driver": "1.25.0",
|
|
72
|
+
"@applitools/eyes": "1.38.0",
|
|
73
73
|
"@applitools/utils": "1.14.1"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
package/types/index.d.ts
CHANGED
|
@@ -277,7 +277,8 @@ export type CheckSettingsAutomationPlain = {
|
|
|
277
277
|
lazyLoad?: undefined | boolean | { scrollLength?: undefined | number; waitingTime?: undefined | number; maxAmountToScroll?: undefined | number; };
|
|
278
278
|
};
|
|
279
279
|
export class CheckSettingsAutomation {
|
|
280
|
-
constructor(settings?: undefined | CheckSettingsAutomation
|
|
280
|
+
constructor(settings?: undefined | CheckSettingsAutomation);
|
|
281
|
+
constructor(settings?: undefined | CheckSettingsAutomationPlain);
|
|
281
282
|
region(region: RegionPlain | LegacyRegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: undefined | string; shadow?: undefined | EyesSelector<Selector>; frame?: undefined | EyesSelector<Selector>; }))): CheckSettingsAutomation;
|
|
282
283
|
shadow(selector: string | Selector | { selector: string | Selector; type?: undefined | string; shadow?: undefined | EyesSelector<Selector>; frame?: undefined | EyesSelector<Selector>; }): CheckSettingsAutomation;
|
|
283
284
|
frame(context: { frame: number | (Element | (string | Selector | { selector: string | Selector; type?: undefined | string; shadow?: undefined | EyesSelector<Selector>; frame?: undefined | EyesSelector<Selector>; })); scrollRootElement?: undefined | (Element | (string | Selector | { selector: string | Selector; type?: undefined | string; shadow?: undefined | EyesSelector<Selector>; frame?: undefined | EyesSelector<Selector>; })); }): CheckSettingsAutomation;
|
|
@@ -1195,6 +1196,7 @@ export type BatchInfoPlain = {
|
|
|
1195
1196
|
startedAt?: undefined | string | Date;
|
|
1196
1197
|
notifyOnCompletion?: undefined | boolean;
|
|
1197
1198
|
properties?: undefined | Array<PropertyDataPlain>;
|
|
1199
|
+
buildId?: undefined | string;
|
|
1198
1200
|
};
|
|
1199
1201
|
export class BatchInfo implements Required<BatchInfoPlain> {
|
|
1200
1202
|
constructor();
|
|
@@ -1226,6 +1228,10 @@ export class BatchInfo implements Required<BatchInfoPlain> {
|
|
|
1226
1228
|
setProperties(properties: Array<PropertyDataPlain>): BatchInfo;
|
|
1227
1229
|
addProperty(name: string, value: string): BatchInfo;
|
|
1228
1230
|
addProperty(prop: PropertyDataPlain): BatchInfo;
|
|
1231
|
+
get buildId(): string;
|
|
1232
|
+
set buildId(buildId: string);
|
|
1233
|
+
getBuildId(): string;
|
|
1234
|
+
setBuildId(buildId: string): BatchInfo;
|
|
1229
1235
|
}
|
|
1230
1236
|
export type Image = {
|
|
1231
1237
|
image: string | Buffer | URL;
|