@applitools/eyes-webdriverio 5.32.8 → 5.32.12

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
@@ -3,6 +3,29 @@
3
3
  ## Unreleased
4
4
 
5
5
 
6
+ ## 5.32.12 - 2021/10/20
7
+
8
+ - updated to @applitools/dom-snapshot@4.5.10 (from 4.5.9)
9
+ - updated to @applitools/eyes-sdk-core@12.23.18 (from 12.23.17)
10
+ - updated to @applitools/visual-grid-client@15.8.37 (from 15.8.36)
11
+
12
+ ## 5.32.11 - 2021/10/20
13
+
14
+ - updated to @applitools/dom-snapshot@4.5.9 (from 4.5.8)
15
+ - updated to @applitools/eyes-sdk-core@12.23.17 (from 12.23.16)
16
+ - updated to @applitools/visual-grid-client@15.8.36 (from 15.8.35)
17
+
18
+ ## 5.32.10 - 2021/10/13
19
+
20
+ - updated to @applitools/eyes-sdk-core@12.23.16 (from 12.23.15)
21
+ - updated to @applitools/visual-grid-client@15.8.35 (from 15.8.34)
22
+
23
+ ## 5.32.9 - 2021/10/12
24
+
25
+ - updated to @applitools/eyes-api@1.1.4 (from 1.1.3)
26
+ - updated to @applitools/eyes-sdk-core@12.23.15 (from 12.23.14)
27
+ - updated to @applitools/visual-grid-client@15.8.34 (from 15.8.33)
28
+
6
29
  ## 5.32.8 - 2021/10/7
7
30
 
8
31
  - updated to @applitools/eyes-api@1.1.3 (from 1.1.2)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-webdriverio",
3
- "version": "5.32.8",
3
+ "version": "5.32.12",
4
4
  "description": "Applitools Eyes SDK for WebdriverIO",
5
5
  "keywords": [
6
6
  "eyes-webdriverio",
@@ -69,11 +69,11 @@
69
69
  }
70
70
  },
71
71
  "dependencies": {
72
- "@applitools/dom-snapshot": "4.5.8",
73
- "@applitools/eyes-api": "1.1.3",
74
- "@applitools/eyes-sdk-core": "12.23.14",
72
+ "@applitools/dom-snapshot": "4.5.10",
73
+ "@applitools/eyes-api": "1.1.4",
74
+ "@applitools/eyes-sdk-core": "12.23.18",
75
75
  "@applitools/utils": "1.2.3",
76
- "@applitools/visual-grid-client": "15.8.33"
76
+ "@applitools/visual-grid-client": "15.8.37"
77
77
  },
78
78
  "devDependencies": {
79
79
  "@applitools/api-extractor": "1.1.3",
@@ -81,7 +81,7 @@
81
81
  "@applitools/sdk-coverage-tests": "^2.3.15",
82
82
  "@applitools/sdk-release-kit": "^0.13.3",
83
83
  "@applitools/sdk-shared": "0.9.6",
84
- "@applitools/test-utils": "1.0.7",
84
+ "@applitools/test-utils": "1.0.9",
85
85
  "@types/mocha": "^9.0.0",
86
86
  "@typescript-eslint/eslint-plugin": "^4.15.1",
87
87
  "@typescript-eslint/parser": "^4.15.1",
package/types/index.d.ts CHANGED
@@ -487,6 +487,7 @@ export class CheckSettings {
487
487
  variationGroupId(variationGroupId: string): this;
488
488
  visualGridOption(key: string, value: any): this;
489
489
  visualGridOptions(options: {[key: string]: any}): this;
490
+ waitBeforeCapture(waitBeforeCapture: number): this;
490
491
  /** @deprecated */
491
492
  webHook(script: string): this;
492
493
  withName(name: string): this;
@@ -610,6 +611,8 @@ export class Configuration {
610
611
  set viewportSize(viewportSize: RectangleSizePlain);
611
612
  get visualGridOptions(): {[key: string]: any};
612
613
  set visualGridOptions(visualGridOptions: {[key: string]: any});
614
+ get waitBeforeCapture(): number;
615
+ set waitBeforeCapture(waitBeforeCapture: number);
613
616
  get waitBeforeScreenshots(): number;
614
617
  set waitBeforeScreenshots(waitBeforeScreenshots: number);
615
618
  addBrowser(browserInfo: DesktopBrowserInfo): this;
@@ -703,6 +706,7 @@ export class Configuration {
703
706
  getUseDom(): boolean;
704
707
  getViewportSize(): RectangleSize;
705
708
  getVisualGridOptions(): {[key: string]: any};
709
+ getWaitBeforeCapture(): number;
706
710
  getWaitBeforeScreenshots(): number;
707
711
  setAccessibilityValidation(accessibilityValidation: AccessibilitySettings): this;
708
712
  setAgentId(agentId: string): this;
@@ -786,6 +790,7 @@ export class Configuration {
786
790
  setViewportSize(viewportSize: RectangleSizePlain): this;
787
791
  setVisualGridOption(key: string, value: any): this;
788
792
  setVisualGridOptions(visualGridOptions: {[key: string]: any}): this;
793
+ setWaitBeforeCapture(waitBeforeCapture: number): this;
789
794
  setWaitBeforeScreenshots(waitBeforeScreenshots: number): this;
790
795
  }
791
796
 
@@ -1732,6 +1737,7 @@ export type CheckSettingsPlain = {
1732
1737
  renderId?: string;
1733
1738
  variationGroupId?: string;
1734
1739
  timeout?: number;
1740
+ waitBeforeCapture?: number;
1735
1741
  };
1736
1742
 
1737
1743
  export type ChromeEmulationInfo = {
@@ -1784,12 +1790,14 @@ export type ConfigurationPlain = {
1784
1790
  cut?: CutProviderPlain;
1785
1791
  rotation?: ImageRotationPlain;
1786
1792
  scaleRatio?: number;
1793
+ waitBeforeCapture?: number;
1787
1794
  } & {
1788
1795
  /** @undocumented */ concurrentSessions?: number;
1789
1796
  browsersInfo?: (DesktopBrowserInfo | ChromeEmulationInfo | IOSDeviceInfo)[];
1790
1797
  visualGridOptions?: Record<string, any>;
1791
1798
  layoutBreakpoints?: boolean | number[];
1792
1799
  disableBrowserFetching?: boolean;
1800
+ waitBeforeCapture?: number;
1793
1801
  };
1794
1802
 
1795
1803
  export type ConsoleLogHandlerPlain = {type: 'console'};