@applitools/eyes-testcafe 6.3.21 → 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 CHANGED
@@ -13,6 +13,49 @@
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
+
16
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)
17
60
 
18
61
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-testcafe",
3
- "version": "6.3.21",
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.24.4",
72
- "@applitools/eyes": "1.37.0",
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 | CheckSettingsAutomationPlain);
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;