@applitools/eyes-selenium 4.59.4 → 4.59.6

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
@@ -8,6 +8,23 @@
8
8
 
9
9
 
10
10
 
11
+ ## 4.59.6 - 2022/9/26
12
+
13
+ ### Features
14
+ ### Bug fixes
15
+ - Fixed minor issues
16
+
17
+ ## 4.59.5 - 2022/9/22
18
+
19
+ ### Features
20
+ - Don't fail `eyes.open` when there is a failure to set viewport size in `UFG`.
21
+ - Added support for lazy loading views in android native apps
22
+ - Using `lazyLoad.waitingTime` as a delay between stitches by default
23
+ - Added `Sony Xperia 10 II` emulation device
24
+ - Added `iPhone 14` and `iPhone 14 Pro Max` ios devices
25
+ ### Bug fixes
26
+ - Fixed incorrect calculation of the target element position.
27
+
11
28
  ## 4.59.4 - 2022/7/28
12
29
 
13
30
  ### Features
package/dist/api.js CHANGED
@@ -27,14 +27,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
27
27
  };
28
28
  Object.defineProperty(exports, "__esModule", { value: true });
29
29
  exports.BatchClose = exports.Target = exports.CheckSettings = exports.Configuration = exports.Eyes = void 0;
30
- const eyes_sdk_core_1 = require("@applitools/eyes-sdk-core");
30
+ const core_1 = require("@applitools/core");
31
31
  const api = __importStar(require("@applitools/eyes-api"));
32
32
  const spec = __importStar(require("@applitools/spec-driver-selenium"));
33
- const sdk = (0, eyes_sdk_core_1.makeSDK)({
34
- name: 'eyes.selenium',
35
- version: `${require('../package.json').version}--${process.env.APPLITOOLS_SELENIUM_MAJOR_VERSION}`,
33
+ const sdk = (0, core_1.makeCore)({
34
+ agentId: `eyes-webdriverio/${require('../package.json').version}`,
36
35
  spec,
37
- VisualGridClient: require('@applitools/visual-grid-client'),
38
36
  });
39
37
  __exportStar(require("@applitools/eyes-api"), exports);
40
38
  class Eyes extends api.Eyes {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-selenium",
3
- "version": "4.59.4",
3
+ "version": "4.59.6",
4
4
  "description": "Applitools Eyes SDK for Selenium WebDriver",
5
5
  "keywords": [
6
6
  "eyes-selenium",
@@ -65,18 +65,17 @@
65
65
  }
66
66
  },
67
67
  "dependencies": {
68
- "@applitools/eyes-api": "1.7.5",
69
- "@applitools/eyes-sdk-core": "13.8.19",
70
- "@applitools/spec-driver-selenium": "1.3.17",
71
- "@applitools/visual-grid-client": "15.13.13"
68
+ "@applitools/core": "1.0.9",
69
+ "@applitools/eyes-api": "1.7.10",
70
+ "@applitools/spec-driver-selenium": "1.3.24"
72
71
  },
73
72
  "devDependencies": {
74
- "@applitools/api-extractor": "1.2.9",
75
- "@applitools/bongo": "^2.1.6",
73
+ "@applitools/api-extractor": "1.2.11",
74
+ "@applitools/bongo": "^2.2.0",
76
75
  "@applitools/scripts": "1.1.0",
77
- "@applitools/sdk-coverage-tests": "2.3.19",
78
- "@applitools/sdk-shared": "0.9.13",
79
- "@applitools/test-utils": "1.4.3",
76
+ "@applitools/sdk-coverage-tests": "2.3.20",
77
+ "@applitools/sdk-shared": "0.9.14",
78
+ "@applitools/test-utils": "1.5.1",
80
79
  "@types/node": "12",
81
80
  "@types/selenium-webdriver": "^4.1.1",
82
81
  "@typescript-eslint/eslint-plugin": "^5.27.0",
@@ -88,7 +87,7 @@
88
87
  "eslint-plugin-node": "^11.1.0",
89
88
  "eslint-plugin-prettier": "^4.0.0",
90
89
  "husky": "^4.3.8",
91
- "mocha": "^10.0.0",
90
+ "mocha": "^9.2.2",
92
91
  "prettier": "^2.6.2",
93
92
  "selenium-webdriver": "^4.2.0",
94
93
  "spec-xunit-file": "0.0.1-3",
package/types/index.d.ts CHANGED
@@ -23,7 +23,7 @@ export class Eyes {
23
23
  check(checkSettings?: CheckSettingsPlain): Promise<MatchResult>;
24
24
  locate<TLocator extends string>(settings: VisualLocatorSettings<TLocator>): Promise<Record<TLocator, Array<RegionPlain>>>;
25
25
  extractTextRegions<TPattern extends string>(settings: OCRSettings<TPattern>): Promise<Record<TPattern, Array<TextRegion>>>;
26
- extractText(regions: Array<OCRRegion>): Promise<Array<string>>;
26
+ extractText(settings: Array<OCRRegion>): Promise<Array<string>>;
27
27
  close(throwErr?: boolean): Promise<TestResults>;
28
28
  abort(): Promise<TestResults>;
29
29
  getViewportSize(): Promise<RectangleSize>;
@@ -112,7 +112,14 @@ export type ConfigurationPlain = {
112
112
  apiKey?: string;
113
113
  serverUrl?: string;
114
114
  proxy?: ProxySettingsPlain;
115
- autProxy?: { proxy: { url: string; username?: string; password?: string; isHttpOnly?: boolean; }; domains?: Array<string>; AUTProxyMode?: "Allow" | "Block"; };
115
+ autProxy?: {
116
+ url: string;
117
+ username?: string;
118
+ password?: string;
119
+ isHttpOnly?: boolean;
120
+ mode?: "Allow" | "Block";
121
+ domains?: Array<string>;
122
+ };
116
123
  isDisabled?: boolean;
117
124
  appName?: string;
118
125
  testName?: string;
@@ -157,7 +164,7 @@ export type ConfigurationPlain = {
157
164
  disableBrowserFetching?: boolean;
158
165
  };
159
166
  export class Configuration implements Required<ConfigurationPlain> {
160
- constructor(config?: ConfigurationPlain);
167
+ constructor(config?: ConfigurationPlain, spec?: { isElement(element: any): element is Element; isSelector(selector: any): selector is Selector; });
161
168
  get appName(): string;
162
169
  set appName(appName: string);
163
170
  getAppName(): string;
@@ -204,10 +211,38 @@ export class Configuration implements Required<ConfigurationPlain> {
204
211
  setProxy(proxy: ProxySettingsPlain): Configuration;
205
212
  setProxy(url: string, username?: string, password?: string, isHttpOnly?: boolean): Configuration;
206
213
  setProxy(isEnabled: false): Configuration;
207
- get autProxy(): { proxy: { url: string; username?: string; password?: string; isHttpOnly?: boolean; }; domains?: Array<string>; AUTProxyMode?: "Allow" | "Block"; };
208
- set autProxy(autProxy: { proxy: { url: string; username?: string; password?: string; isHttpOnly?: boolean; }; domains?: Array<string>; AUTProxyMode?: "Allow" | "Block"; });
209
- getAutProxy(): { proxy: { url: string; username?: string; password?: string; isHttpOnly?: boolean; }; domains?: Array<string>; AUTProxyMode?: "Allow" | "Block"; };
210
- setAutProxy(autProxy: { proxy: { url: string; username?: string; password?: string; isHttpOnly?: boolean; }; domains?: Array<string>; AUTProxyMode?: "Allow" | "Block"; }): Configuration;
214
+ get autProxy(): {
215
+ url: string;
216
+ username?: string;
217
+ password?: string;
218
+ isHttpOnly?: boolean;
219
+ mode?: "Allow" | "Block";
220
+ domains?: Array<string>;
221
+ };
222
+ set autProxy(autProxy: {
223
+ url: string;
224
+ username?: string;
225
+ password?: string;
226
+ isHttpOnly?: boolean;
227
+ mode?: "Allow" | "Block";
228
+ domains?: Array<string>;
229
+ });
230
+ getAutProxy(): {
231
+ url: string;
232
+ username?: string;
233
+ password?: string;
234
+ isHttpOnly?: boolean;
235
+ mode?: "Allow" | "Block";
236
+ domains?: Array<string>;
237
+ };
238
+ setAutProxy(autProxy: {
239
+ url: string;
240
+ username?: string;
241
+ password?: string;
242
+ isHttpOnly?: boolean;
243
+ mode?: "Allow" | "Block";
244
+ domains?: Array<string>;
245
+ }): Configuration;
211
246
  get batch(): BatchInfoPlain;
212
247
  set batch(batch: BatchInfoPlain);
213
248
  getBatch(): BatchInfo;
@@ -390,13 +425,24 @@ export type CheckSettingsPlain = {
390
425
  contentRegions?: Array<(RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }))) | { region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; })); padding?: number | { top?: number; right?: number; bottom?: number; left?: number; }; regionId?: string; }>;
391
426
  floatingRegions?: Array<(RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }))) | {
392
427
  region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }));
428
+ padding?: number | { top?: number; right?: number; bottom?: number; left?: number; };
429
+ regionId?: string;
430
+ offset?: { top?: number; bottom?: number; left?: number; right?: number; };
431
+ } | {
432
+ region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }));
433
+ padding?: number | { top?: number; right?: number; bottom?: number; left?: number; };
434
+ regionId?: string;
393
435
  maxUpOffset?: number;
394
436
  maxDownOffset?: number;
395
437
  maxLeftOffset?: number;
396
438
  maxRightOffset?: number;
439
+ }>;
440
+ accessibilityRegions?: Array<(RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }))) | {
441
+ region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }));
442
+ padding?: number | { top?: number; right?: number; bottom?: number; left?: number; };
397
443
  regionId?: string;
444
+ type?: AccessibilityRegionTypePlain;
398
445
  }>;
399
- accessibilityRegions?: Array<(RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }))) | { region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; })); type?: AccessibilityRegionTypePlain; regionId?: string; }>;
400
446
  disableBrowserFetching?: boolean;
401
447
  layoutBreakpoints?: boolean | Array<number>;
402
448
  visualGridOptions?: { [key: string]: any; };
@@ -409,7 +455,7 @@ export type CheckSettingsPlain = {
409
455
  lazyLoad?: boolean | { scrollLength?: number; waitingTime?: number; maxAmountToScroll?: number; };
410
456
  };
411
457
  export class CheckSettings {
412
- constructor(settings?: CheckSettingsPlain);
458
+ constructor(settings?: CheckSettings | CheckSettingsPlain, spec?: { isElement(value: any): value is Element; isSelector(value: any): value is Selector; });
413
459
  withName(name: string): CheckSettings;
414
460
  region(region: LegacyRegionPlain | (RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; })))): CheckSettings;
415
461
  shadow(selector: string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }): CheckSettings;
@@ -425,25 +471,40 @@ export class CheckSettings {
425
471
  contentRegions(...regions: Array<LegacyRegionPlain | (RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }))) | { region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; })); padding?: number | { top?: number; right?: number; bottom?: number; left?: number; }; regionId?: string; }>): CheckSettings;
426
472
  floatingRegion(region: {
427
473
  region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }));
474
+ padding?: number | { top?: number; right?: number; bottom?: number; left?: number; };
475
+ regionId?: string;
476
+ offset?: { top?: number; bottom?: number; left?: number; right?: number; };
477
+ }): CheckSettings;
478
+ floatingRegion(region: {
479
+ region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }));
480
+ padding?: number | { top?: number; right?: number; bottom?: number; left?: number; };
481
+ regionId?: string;
428
482
  maxUpOffset?: number;
429
483
  maxDownOffset?: number;
430
484
  maxLeftOffset?: number;
431
485
  maxRightOffset?: number;
432
- regionId?: string;
433
486
  }): CheckSettings;
434
487
  floatingRegion(region: LegacyRegionPlain | (RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }))), maxUpOffset?: number, maxDownOffset?: number, maxLeftOffset?: number, maxRightOffset?: number): CheckSettings;
435
488
  floatingRegions(...regions: Array<LegacyRegionPlain | (RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }))) | {
436
489
  region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }));
437
- maxUpOffset?: number;
438
- maxDownOffset?: number;
439
- maxLeftOffset?: number;
440
- maxRightOffset?: number;
490
+ padding?: number | { top?: number; right?: number; bottom?: number; left?: number; };
441
491
  regionId?: string;
492
+ offset?: { top?: number; bottom?: number; left?: number; right?: number; };
442
493
  }>): CheckSettings;
443
494
  floatingRegions(maxOffset: number, ...regions: Array<LegacyRegionPlain | (RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; })))>): CheckSettings;
444
- accessibilityRegion(region: { region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; })); type?: AccessibilityRegionTypePlain; regionId?: string; }): CheckSettings;
495
+ accessibilityRegion(region: {
496
+ region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }));
497
+ padding?: number | { top?: number; right?: number; bottom?: number; left?: number; };
498
+ regionId?: string;
499
+ type?: AccessibilityRegionTypePlain;
500
+ }): CheckSettings;
445
501
  accessibilityRegion(region: LegacyRegionPlain | (RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }))), type?: AccessibilityRegionTypePlain): CheckSettings;
446
- accessibilityRegions(...regions: Array<LegacyRegionPlain | (RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }))) | { region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; })); type?: AccessibilityRegionTypePlain; regionId?: string; }>): CheckSettings;
502
+ accessibilityRegions(...regions: Array<LegacyRegionPlain | (RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }))) | {
503
+ region: RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }));
504
+ padding?: number | { top?: number; right?: number; bottom?: number; left?: number; };
505
+ regionId?: string;
506
+ type?: AccessibilityRegionTypePlain;
507
+ }>): CheckSettings;
447
508
  accessibilityRegions(type: AccessibilityRegionTypePlain, ...regions: Array<LegacyRegionPlain | (RegionPlain | (Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; })))>): CheckSettings;
448
509
  scrollRootElement(scrollRootElement: Element | (string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; })): CheckSettings;
449
510
  fully(fully?: boolean): CheckSettings;
@@ -461,14 +522,14 @@ export class CheckSettings {
461
522
  layoutBreakpoints(layoutBreakpoints?: boolean | Array<number>): CheckSettings;
462
523
  hook(name: string, script: string): CheckSettings;
463
524
  beforeRenderScreenshotHook(script: string): CheckSettings;
464
- visualGridOption(key: string, value: any): CheckSettings;
465
- visualGridOptions(options: { [key: string]: any; }): CheckSettings;
525
+ ufgOption(key: string, value: any): CheckSettings;
526
+ ufgOptions(options: { [key: string]: any; }): CheckSettings;
466
527
  renderId(renderId: string): CheckSettings;
467
528
  pageId(pageId: string): CheckSettings;
468
529
  variationGroupId(variationGroupId: string): CheckSettings;
469
530
  timeout(timeout: number): CheckSettings;
470
531
  waitBeforeCapture(waitBeforeCapture: number): CheckSettings;
471
- lazyLoad(options: { scrollLength?: number; waitingTime?: number; maxAmountToScroll?: number; }): CheckSettings;
532
+ lazyLoad(options?: boolean | { scrollLength?: number; waitingTime?: number; maxAmountToScroll?: number; }): CheckSettings;
472
533
  }
473
534
  export const Target: {
474
535
  window(): CheckSettings;
@@ -478,8 +539,8 @@ export const Target: {
478
539
  shadow(selector: string | Selector | { selector: string | Selector; type?: string; shadow?: EyesSelector<Selector>; frame?: EyesSelector<Selector>; }): CheckSettings;
479
540
  };
480
541
  export class BatchClose {
481
- static close(settings: { batchIds: Array<string>; serverUrl?: string; apiKey?: string; proxy?: ProxySettingsPlain; }): Promise<void>;
482
- constructor(options?: { batchIds: Array<string>; serverUrl?: string; apiKey?: string; proxy?: ProxySettingsPlain; });
542
+ static close(settings: { batchIds: Array<string>; serverUrl: string; apiKey: string; proxy?: ProxySettingsPlain; }): Promise<void>;
543
+ constructor(options?: { batchIds: Array<string>; serverUrl: string; apiKey: string; proxy?: ProxySettingsPlain; });
483
544
  close(): Promise<void>;
484
545
  setBatchIds(batchIds: Array<string>): BatchClose;
485
546
  setUrl(serverUrl: string): BatchClose;
@@ -535,7 +596,7 @@ export enum CorsIframeHandle {
535
596
  KEEP = 'KEEP',
536
597
  SNAPSHOT = 'SNAPSHOT'
537
598
  }
538
- export type DeviceNamePlain = "Blackberry PlayBook" | "BlackBerry Z30" | "Galaxy A5" | "Galaxy Note 10" | "Galaxy Note 10 Plus" | "Galaxy Note 2" | "Galaxy Note 3" | "Galaxy Note 4" | "Galaxy Note 8" | "Galaxy Note 9" | "Galaxy S3" | "Galaxy S5" | "Galaxy S8" | "Galaxy S8 Plus" | "Galaxy S9" | "Galaxy S9 Plus" | "Galaxy S10" | "Galaxy S10 Plus" | "Galaxy S20" | "Galaxy S22" | "Galaxy Tab S7" | "iPad" | "iPad 6th Gen" | "iPad 7th Gen" | "iPad Air 2" | "iPad Mini" | "iPad Pro" | "iPhone 11" | "iPhone 11 Pro" | "iPhone 11 Pro Max" | "iPhone 4" | "iPhone 5/SE" | "iPhone 6/7/8" | "iPhone 6/7/8 Plus" | "iPhone X" | "iPhone XR" | "iPhone XS" | "iPhone XS Max" | "Kindle Fire HDX" | "Laptop with HiDPI screen" | "Laptop with MDPI screen" | "Laptop with touch" | "LG G6" | "LG Optimus L70" | "Microsoft Lumia 550" | "Microsoft Lumia 950" | "Nexus 10" | "Nexus 4" | "Nexus 5" | "Nexus 5X" | "Nexus 6" | "Nexus 6P" | "Nexus 7" | "Nokia Lumia 520" | "Nokia N9" | "OnePlus 7T" | "OnePlus 7T Pro" | "Pixel 2" | "Pixel 2 XL" | "Pixel 3" | "Pixel 3 XL" | "Pixel 4" | "Pixel 4 XL" | "Pixel 5";
599
+ export type DeviceNamePlain = "Blackberry PlayBook" | "BlackBerry Z30" | "Galaxy A5" | "Galaxy Note 10" | "Galaxy Note 10 Plus" | "Galaxy Note 2" | "Galaxy Note 3" | "Galaxy Note 4" | "Galaxy Note 8" | "Galaxy Note 9" | "Galaxy S3" | "Galaxy S5" | "Galaxy S8" | "Galaxy S8 Plus" | "Galaxy S9" | "Galaxy S9 Plus" | "Galaxy S10" | "Galaxy S10 Plus" | "Galaxy S20" | "Galaxy S22" | "Galaxy Tab S7" | "iPad" | "iPad 6th Gen" | "iPad 7th Gen" | "iPad Air 2" | "iPad Mini" | "iPad Pro" | "iPhone 11" | "iPhone 11 Pro" | "iPhone 11 Pro Max" | "iPhone 4" | "iPhone 5/SE" | "iPhone 6/7/8" | "iPhone 6/7/8 Plus" | "iPhone X" | "iPhone XR" | "iPhone XS" | "iPhone XS Max" | "Kindle Fire HDX" | "Laptop with HiDPI screen" | "Laptop with MDPI screen" | "Laptop with touch" | "LG G6" | "LG Optimus L70" | "Microsoft Lumia 550" | "Microsoft Lumia 950" | "Nexus 10" | "Nexus 4" | "Nexus 5" | "Nexus 5X" | "Nexus 6" | "Nexus 6P" | "Nexus 7" | "Nokia Lumia 520" | "Nokia N9" | "OnePlus 7T" | "OnePlus 7T Pro" | "Pixel 2" | "Pixel 2 XL" | "Pixel 3" | "Pixel 3 XL" | "Pixel 4" | "Pixel 4 XL" | "Pixel 5" | "Sony Xperia 10 II";
539
600
  export enum DeviceName {
540
601
  Blackberry_PlayBook = 'Blackberry PlayBook',
541
602
  BlackBerry_Z30 = 'BlackBerry Z30',
@@ -600,15 +661,18 @@ export enum DeviceName {
600
661
  Pixel_3_XL = 'Pixel 3 XL',
601
662
  Pixel_4 = 'Pixel 4',
602
663
  Pixel_4_XL = 'Pixel 4 XL',
603
- Pixel_5 = 'Pixel 5'
664
+ Pixel_5 = 'Pixel 5',
665
+ Sony_Xperia_10_II = 'Sony Xperia 10 II'
604
666
  }
605
667
  export type FailureReportPlain = "IMMEDIATE" | "ON_CLOSE";
606
668
  export enum FailureReport {
607
669
  IMMEDIATE = 'IMMEDIATE',
608
670
  ON_CLOSE = 'ON_CLOSE'
609
671
  }
610
- export type IosDeviceNamePlain = "iPhone 11" | "iPhone 11 Pro" | "iPhone 11 Pro Max" | "iPhone X" | "iPhone XR" | "iPhone 13 Pro Max" | "iPhone 13 Pro" | "iPhone 13" | "iPhone 12 Pro Max" | "iPhone 12 Pro" | "iPhone 12" | "iPhone 12 mini" | "iPhone Xs" | "iPhone 8" | "iPhone 8 Plus" | "iPhone 7" | "iPhone SE (1st generation)" | "iPad Pro (12.9-inch) (3rd generation)" | "iPad (7th generation)" | "iPad (9th generation)" | "iPad Air (2nd generation)" | "iPad Air (4th generation)";
672
+ export type IosDeviceNamePlain = "iPhone 11" | "iPhone 11 Pro" | "iPhone 11 Pro Max" | "iPhone X" | "iPhone XR" | "iPhone 14 Pro Max" | "iPhone 14" | "iPhone 13 Pro Max" | "iPhone 13 Pro" | "iPhone 13" | "iPhone 12 Pro Max" | "iPhone 12 Pro" | "iPhone 12" | "iPhone 12 mini" | "iPhone Xs" | "iPhone 8" | "iPhone 8 Plus" | "iPhone 7" | "iPhone SE (1st generation)" | "iPad Pro (12.9-inch) (3rd generation)" | "iPad (7th generation)" | "iPad (9th generation)" | "iPad Air (2nd generation)" | "iPad Air (4th generation)";
611
673
  export enum IosDeviceName {
674
+ iPhone_14_Pro_Max = 'iPhone 14 Pro Max',
675
+ iPhone_14 = 'iPhone 14',
612
676
  iPhone_13_Pro_Max = 'iPhone 13 Pro Max',
613
677
  iPhone_13_Pro = 'iPhone 13 Pro',
614
678
  iPhone_13 = 'iPhone 13',
@@ -1257,71 +1321,17 @@ export class TestResults implements Required<TestResultsPlain> {
1257
1321
  isPassed(): boolean;
1258
1322
  delete(): Promise<void>;
1259
1323
  }
1260
- export type TestResultContainerPlain = { readonly exception?: Error; readonly testResults?: {
1261
- readonly id?: string;
1262
- readonly name?: string;
1263
- readonly secretToken?: string;
1264
- readonly status?: "Passed" | "Failed" | "Unresolved";
1265
- readonly appName?: string;
1266
- readonly batchId?: string;
1267
- readonly batchName?: string;
1268
- readonly branchName?: string;
1269
- readonly hostOS?: string;
1270
- readonly hostApp?: string;
1271
- readonly hostDisplaySize?: { width: number; height: number; };
1272
- readonly accessibilityStatus?: { readonly level: "AA" | "AAA"; readonly version: "WCAG_2_0" | "WCAG_2_1"; readonly status: "Passed" | "Failed"; };
1273
- readonly startedAt?: string | Date;
1274
- readonly duration?: number;
1275
- readonly isNew?: boolean;
1276
- readonly isDifferent?: boolean;
1277
- readonly isAborted?: boolean;
1278
- readonly appUrls?: { readonly batch?: string; readonly session?: string; };
1279
- readonly apiUrls?: { readonly batch?: string; readonly session?: string; };
1280
- readonly stepsInfo?: Array<{
1281
- readonly name?: string;
1282
- readonly isDifferent?: boolean;
1283
- readonly hasBaselineImage?: boolean;
1284
- readonly hasCurrentImage?: boolean;
1285
- readonly appUrls?: { readonly step?: string; readonly stepEditor?: string; };
1286
- readonly apiUrls?: {
1287
- readonly baselineImage?: string;
1288
- readonly currentImage?: string;
1289
- readonly checkpointImage?: string;
1290
- readonly checkpointImageThumbnail?: string;
1291
- readonly diffImage?: string;
1292
- };
1293
- readonly renderId?: Array<string>;
1294
- }>;
1295
- readonly steps?: number;
1296
- readonly matches?: number;
1297
- readonly mismatches?: number;
1298
- readonly missing?: number;
1299
- readonly exactMatches?: number;
1300
- readonly strictMatches?: number;
1301
- readonly contentMatches?: number;
1302
- readonly layoutMatches?: number;
1303
- readonly noneMatches?: number;
1304
- readonly url?: string;
1305
- }; readonly browserInfo?: { name?: "chrome" | "chrome-one-version-back" | "chrome-two-versions-back" | "firefox" | "firefox-one-version-back" | "firefox-two-versions-back" | "ie" | "ie10" | "edge" | "edgechromium" | "edgelegacy" | "edgechromium-one-version-back" | "edgechromium-two-versions-back" | "safari" | "safari-earlyaccess" | "safari-one-version-back" | "safari-two-versions-back"; width: number; height: number; } | { chromeEmulationInfo: { deviceName: "Blackberry PlayBook" | "BlackBerry Z30" | "Galaxy A5" | "Galaxy Note 10" | "Galaxy Note 10 Plus" | "Galaxy Note 2" | "Galaxy Note 3" | "Galaxy Note 4" | "Galaxy Note 8" | "Galaxy Note 9" | "Galaxy S3" | "Galaxy S5" | "Galaxy S8" | "Galaxy S8 Plus" | "Galaxy S9" | "Galaxy S9 Plus" | "Galaxy S10" | "Galaxy S10 Plus" | "Galaxy S20" | "Galaxy S22" | "Galaxy Tab S7" | "iPad" | "iPad 6th Gen" | "iPad 7th Gen" | "iPad Air 2" | "iPad Mini" | "iPad Pro" | "iPhone 11" | "iPhone 11 Pro" | "iPhone 11 Pro Max" | "iPhone 4" | "iPhone 5/SE" | "iPhone 6/7/8" | "iPhone 6/7/8 Plus" | "iPhone X" | "iPhone XR" | "iPhone XS" | "iPhone XS Max" | "Kindle Fire HDX" | "Laptop with HiDPI screen" | "Laptop with MDPI screen" | "Laptop with touch" | "LG G6" | "LG Optimus L70" | "Microsoft Lumia 550" | "Microsoft Lumia 950" | "Nexus 10" | "Nexus 4" | "Nexus 5" | "Nexus 5X" | "Nexus 6" | "Nexus 6P" | "Nexus 7" | "Nokia Lumia 520" | "Nokia N9" | "OnePlus 7T" | "OnePlus 7T Pro" | "Pixel 2" | "Pixel 2 XL" | "Pixel 3" | "Pixel 3 XL" | "Pixel 4" | "Pixel 4 XL" | "Pixel 5"; screenOrientation?: "portrait" | "landscape"; }; } | { iosDeviceInfo: { deviceName: "iPhone 11" | "iPhone 11 Pro" | "iPhone 11 Pro Max" | "iPhone X" | "iPhone XR" | "iPhone 13 Pro Max" | "iPhone 13 Pro" | "iPhone 13" | "iPhone 12 Pro Max" | "iPhone 12 Pro" | "iPhone 12" | "iPhone 12 mini" | "iPhone Xs" | "iPhone 8" | "iPhone 8 Plus" | "iPhone 7" | "iPhone SE (1st generation)" | "iPad Pro (12.9-inch) (3rd generation)" | "iPad (7th generation)" | "iPad (9th generation)" | "iPad Air (2nd generation)" | "iPad Air (4th generation)"; iosVersion?: "latest" | "latest-1"; screenOrientation?: "portrait" | "landscape"; }; } | { androidDeviceInfo: { deviceName: "Galaxy Note 10" | "Galaxy Note 10 Plus" | "Galaxy Note 8" | "Galaxy Note 9" | "Galaxy S8" | "Galaxy S8 Plus" | "Galaxy S9" | "Galaxy S9 Plus" | "Galaxy S10" | "Galaxy S10 Plus" | "Galaxy S20" | "Galaxy S22" | "Galaxy Tab S7" | "Pixel 3 XL" | "Pixel 4" | "Pixel 4 XL" | "Pixel 5" | "Pixel 6" | "Galaxy S20 Plus" | "Galaxy S21" | "Galaxy S21 Plus" | "Galaxy S21 Ultra" | "Galaxy S22 Plus" | "Galaxy Tab S8" | "Xiaomi Redmi Note 11" | "Xiaomi Redmi Note 11 Pro"; version?: "latest" | "latest-1" | "latest-2"; screenOrientation?: "portrait" | "landscape"; }; }; };
1324
+ export type TestResultContainerPlain = { readonly exception: Error; readonly testResults: TestResultsPlain; readonly browserInfo: DesktopBrowserInfo | ChromeEmulationInfo | { deviceName: DeviceNamePlain; screenOrientation?: ScreenOrientationPlain; } | IOSDeviceInfo | AndroidDeviceInfo; };
1306
1325
  export class TestResultContainer implements Required<TestResultContainerPlain> {
1307
1326
  get testResults(): TestResultsPlain;
1308
1327
  getTestResults(): TestResults;
1309
1328
  get exception(): Error;
1310
1329
  getException(): Error;
1311
- get browserInfo(): { name?: "chrome" | "chrome-one-version-back" | "chrome-two-versions-back" | "firefox" | "firefox-one-version-back" | "firefox-two-versions-back" | "ie" | "ie10" | "edge" | "edgechromium" | "edgelegacy" | "edgechromium-one-version-back" | "edgechromium-two-versions-back" | "safari" | "safari-earlyaccess" | "safari-one-version-back" | "safari-two-versions-back"; width: number; height: number; } | { chromeEmulationInfo: { deviceName: "Blackberry PlayBook" | "BlackBerry Z30" | "Galaxy A5" | "Galaxy Note 10" | "Galaxy Note 10 Plus" | "Galaxy Note 2" | "Galaxy Note 3" | "Galaxy Note 4" | "Galaxy Note 8" | "Galaxy Note 9" | "Galaxy S3" | "Galaxy S5" | "Galaxy S8" | "Galaxy S8 Plus" | "Galaxy S9" | "Galaxy S9 Plus" | "Galaxy S10" | "Galaxy S10 Plus" | "Galaxy S20" | "Galaxy S22" | "Galaxy Tab S7" | "iPad" | "iPad 6th Gen" | "iPad 7th Gen" | "iPad Air 2" | "iPad Mini" | "iPad Pro" | "iPhone 11" | "iPhone 11 Pro" | "iPhone 11 Pro Max" | "iPhone 4" | "iPhone 5/SE" | "iPhone 6/7/8" | "iPhone 6/7/8 Plus" | "iPhone X" | "iPhone XR" | "iPhone XS" | "iPhone XS Max" | "Kindle Fire HDX" | "Laptop with HiDPI screen" | "Laptop with MDPI screen" | "Laptop with touch" | "LG G6" | "LG Optimus L70" | "Microsoft Lumia 550" | "Microsoft Lumia 950" | "Nexus 10" | "Nexus 4" | "Nexus 5" | "Nexus 5X" | "Nexus 6" | "Nexus 6P" | "Nexus 7" | "Nokia Lumia 520" | "Nokia N9" | "OnePlus 7T" | "OnePlus 7T Pro" | "Pixel 2" | "Pixel 2 XL" | "Pixel 3" | "Pixel 3 XL" | "Pixel 4" | "Pixel 4 XL" | "Pixel 5"; screenOrientation?: "portrait" | "landscape"; }; } | { iosDeviceInfo: { deviceName: "iPhone 11" | "iPhone 11 Pro" | "iPhone 11 Pro Max" | "iPhone X" | "iPhone XR" | "iPhone 13 Pro Max" | "iPhone 13 Pro" | "iPhone 13" | "iPhone 12 Pro Max" | "iPhone 12 Pro" | "iPhone 12" | "iPhone 12 mini" | "iPhone Xs" | "iPhone 8" | "iPhone 8 Plus" | "iPhone 7" | "iPhone SE (1st generation)" | "iPad Pro (12.9-inch) (3rd generation)" | "iPad (7th generation)" | "iPad (9th generation)" | "iPad Air (2nd generation)" | "iPad Air (4th generation)"; iosVersion?: "latest" | "latest-1"; screenOrientation?: "portrait" | "landscape"; }; } | { androidDeviceInfo: { deviceName: "Galaxy Note 10" | "Galaxy Note 10 Plus" | "Galaxy Note 8" | "Galaxy Note 9" | "Galaxy S8" | "Galaxy S8 Plus" | "Galaxy S9" | "Galaxy S9 Plus" | "Galaxy S10" | "Galaxy S10 Plus" | "Galaxy S20" | "Galaxy S22" | "Galaxy Tab S7" | "Pixel 3 XL" | "Pixel 4" | "Pixel 4 XL" | "Pixel 5" | "Pixel 6" | "Galaxy S20 Plus" | "Galaxy S21" | "Galaxy S21 Plus" | "Galaxy S21 Ultra" | "Galaxy S22 Plus" | "Galaxy Tab S8" | "Xiaomi Redmi Note 11" | "Xiaomi Redmi Note 11 Pro"; version?: "latest" | "latest-1" | "latest-2"; screenOrientation?: "portrait" | "landscape"; }; };
1312
- getBrowserInfo(): { name?: "chrome" | "chrome-one-version-back" | "chrome-two-versions-back" | "firefox" | "firefox-one-version-back" | "firefox-two-versions-back" | "ie" | "ie10" | "edge" | "edgechromium" | "edgelegacy" | "edgechromium-one-version-back" | "edgechromium-two-versions-back" | "safari" | "safari-earlyaccess" | "safari-one-version-back" | "safari-two-versions-back"; width: number; height: number; } | { chromeEmulationInfo: { deviceName: "Blackberry PlayBook" | "BlackBerry Z30" | "Galaxy A5" | "Galaxy Note 10" | "Galaxy Note 10 Plus" | "Galaxy Note 2" | "Galaxy Note 3" | "Galaxy Note 4" | "Galaxy Note 8" | "Galaxy Note 9" | "Galaxy S3" | "Galaxy S5" | "Galaxy S8" | "Galaxy S8 Plus" | "Galaxy S9" | "Galaxy S9 Plus" | "Galaxy S10" | "Galaxy S10 Plus" | "Galaxy S20" | "Galaxy S22" | "Galaxy Tab S7" | "iPad" | "iPad 6th Gen" | "iPad 7th Gen" | "iPad Air 2" | "iPad Mini" | "iPad Pro" | "iPhone 11" | "iPhone 11 Pro" | "iPhone 11 Pro Max" | "iPhone 4" | "iPhone 5/SE" | "iPhone 6/7/8" | "iPhone 6/7/8 Plus" | "iPhone X" | "iPhone XR" | "iPhone XS" | "iPhone XS Max" | "Kindle Fire HDX" | "Laptop with HiDPI screen" | "Laptop with MDPI screen" | "Laptop with touch" | "LG G6" | "LG Optimus L70" | "Microsoft Lumia 550" | "Microsoft Lumia 950" | "Nexus 10" | "Nexus 4" | "Nexus 5" | "Nexus 5X" | "Nexus 6" | "Nexus 6P" | "Nexus 7" | "Nokia Lumia 520" | "Nokia N9" | "OnePlus 7T" | "OnePlus 7T Pro" | "Pixel 2" | "Pixel 2 XL" | "Pixel 3" | "Pixel 3 XL" | "Pixel 4" | "Pixel 4 XL" | "Pixel 5"; screenOrientation?: "portrait" | "landscape"; }; } | { iosDeviceInfo: { deviceName: "iPhone 11" | "iPhone 11 Pro" | "iPhone 11 Pro Max" | "iPhone X" | "iPhone XR" | "iPhone 13 Pro Max" | "iPhone 13 Pro" | "iPhone 13" | "iPhone 12 Pro Max" | "iPhone 12 Pro" | "iPhone 12" | "iPhone 12 mini" | "iPhone Xs" | "iPhone 8" | "iPhone 8 Plus" | "iPhone 7" | "iPhone SE (1st generation)" | "iPad Pro (12.9-inch) (3rd generation)" | "iPad (7th generation)" | "iPad (9th generation)" | "iPad Air (2nd generation)" | "iPad Air (4th generation)"; iosVersion?: "latest" | "latest-1"; screenOrientation?: "portrait" | "landscape"; }; } | { androidDeviceInfo: { deviceName: "Galaxy Note 10" | "Galaxy Note 10 Plus" | "Galaxy Note 8" | "Galaxy Note 9" | "Galaxy S8" | "Galaxy S8 Plus" | "Galaxy S9" | "Galaxy S9 Plus" | "Galaxy S10" | "Galaxy S10 Plus" | "Galaxy S20" | "Galaxy S22" | "Galaxy Tab S7" | "Pixel 3 XL" | "Pixel 4" | "Pixel 4 XL" | "Pixel 5" | "Pixel 6" | "Galaxy S20 Plus" | "Galaxy S21" | "Galaxy S21 Plus" | "Galaxy S21 Ultra" | "Galaxy S22 Plus" | "Galaxy Tab S8" | "Xiaomi Redmi Note 11" | "Xiaomi Redmi Note 11 Pro"; version?: "latest" | "latest-1" | "latest-2"; screenOrientation?: "portrait" | "landscape"; }; };
1330
+ get browserInfo(): DesktopBrowserInfo | ChromeEmulationInfo | { deviceName: DeviceNamePlain; screenOrientation?: ScreenOrientationPlain; } | IOSDeviceInfo | AndroidDeviceInfo;
1331
+ getBrowserInfo(): DesktopBrowserInfo | ChromeEmulationInfo | { deviceName: DeviceNamePlain; screenOrientation?: ScreenOrientationPlain; } | IOSDeviceInfo | AndroidDeviceInfo;
1313
1332
  }
1314
- export type TestResultsSummaryPlain = {
1315
- results: Array<TestResultContainerPlain>;
1316
- passed: number;
1317
- unresolved: number;
1318
- failed: number;
1319
- exceptions: number;
1320
- mismatches: number;
1321
- missing: number;
1322
- matches: number;
1323
- };
1324
- export class TestResultsSummary implements Iterable<TestResultContainerPlain> {
1333
+ export type TestResultsSummaryPlain = Iterable<TestResultContainerPlain>;
1334
+ export class TestResultsSummary implements Iterable<TestResultContainer> {
1325
1335
  getAllResults(): Array<TestResultContainer>;
1326
1336
  [Symbol.iterator](): Iterator<TestResultContainer, any, undefined>;
1327
1337
  }
@@ -1360,7 +1370,7 @@ export class Logger {
1360
1370
  tag(name: string, value: any): void;
1361
1371
  extend(label?: string): Logger;
1362
1372
  }
1363
- export function closeBatch(spec: { closeBatches(options: { settings: { batchIds: Array<string>; serverUrl?: string; apiKey?: string; proxy?: ProxySettingsPlain; }; }): Promise<void>; }): (options: { batchIds: Array<string>; serverUrl?: string; apiKey?: string; proxy?: ProxySettingsPlain; }) => Promise<void>;
1373
+ export function closeBatch(spec: BatchCloseSpec): (options: { batchIds: Array<string>; serverUrl: string; apiKey: string; proxy?: ProxySettingsPlain; }) => Promise<void>;
1364
1374
  export abstract class EyesRunner {
1365
1375
  getAllTestResults(throwErr?: boolean): Promise<TestResultsSummary>;
1366
1376
  }