@applitools/eyes-webdriverio 5.34.13 → 5.34.16
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 +32 -1
- package/package.json +9 -8
- package/types/index.d.ts +10 -40
- package/types/service.d.ts +20 -17
package/CHANGELOG.md
CHANGED
|
@@ -5,10 +5,41 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## 5.34.16 - 2022/5/27
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
- Added support for drivers that return screenshots in jpeg format
|
|
15
|
+
### Bug fixes
|
|
16
|
+
- Improve error message when failed to set viewport size
|
|
17
|
+
|
|
18
|
+
## 5.34.15 - 2022/5/23
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
- Support iPhone SE `IosDeviceName.iPhone_SE` and iPhone 8 Plus `IosDeviceName.iPhone_8_Plus` iOS devices
|
|
22
|
+
- Support Galaxy S22 `DeviceName.Galaxy_S22` emulation device
|
|
23
|
+
### Bug fixes
|
|
24
|
+
- Fixed handling of navigation bar size on various devices
|
|
25
|
+
- Allow running with self-signed certificates
|
|
26
|
+
- Fixed bug in native apps when screenshot of the element was taken only for the small visible part of the element
|
|
27
|
+
- Fixed bug when navigation bar was presented in screenshot on Android 12
|
|
28
|
+
|
|
29
|
+
## 5.34.14 - 2022/5/5
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
- Support UFG for native mobile
|
|
33
|
+
### Bug fixes
|
|
34
|
+
- `extractText` now supports regions that don't use hints while using `x`/`y` coordinates
|
|
35
|
+
- accept ios and android lowercase as driver platformName capability when using custom grid
|
|
36
|
+
- Fixed check region fully in classic execution when using CSS stitching
|
|
37
|
+
- Support data urls in iframes
|
|
38
|
+
- Account for an Appium bug when calculating system bars height
|
|
39
|
+
|
|
8
40
|
## 5.34.13 - 2022/3/25
|
|
9
41
|
|
|
10
42
|
### Features
|
|
11
|
-
- Support pageCoverage info in Native
|
|
12
43
|
- `runner.getAllTestResults` returns the corresponding UFG browser/device configuration for each test. This is available as `runner.getAllTestResults()[i].browserInfo`.
|
|
13
44
|
### Bug fixes
|
|
14
45
|
- `runner.getAllTestResults` now aborts unclosed tests
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-webdriverio",
|
|
3
|
-
"version": "5.34.
|
|
3
|
+
"version": "5.34.16",
|
|
4
4
|
"description": "Applitools Eyes SDK for WebdriverIO",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eyes-webdriverio",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"types": "./types/v5-sync.d.ts"
|
|
55
55
|
},
|
|
56
56
|
"./dist/*": "./dist/*.js",
|
|
57
|
+
"./types/*": "./dist/*.d.ts",
|
|
57
58
|
"./package.json": "./package.json"
|
|
58
59
|
},
|
|
59
60
|
"typesVersions": {
|
|
@@ -110,18 +111,18 @@
|
|
|
110
111
|
}
|
|
111
112
|
},
|
|
112
113
|
"dependencies": {
|
|
113
|
-
"@applitools/eyes-api": "1.
|
|
114
|
-
"@applitools/eyes-sdk-core": "13.
|
|
115
|
-
"@applitools/spec-driver-webdriverio": "1.2.
|
|
116
|
-
"@applitools/visual-grid-client": "15.
|
|
114
|
+
"@applitools/eyes-api": "1.4.1",
|
|
115
|
+
"@applitools/eyes-sdk-core": "13.6.23",
|
|
116
|
+
"@applitools/spec-driver-webdriverio": "1.2.9",
|
|
117
|
+
"@applitools/visual-grid-client": "15.12.35"
|
|
117
118
|
},
|
|
118
119
|
"devDependencies": {
|
|
119
120
|
"@applitools/api-extractor": "1.2.7",
|
|
121
|
+
"@applitools/bongo": "^2.1.0",
|
|
120
122
|
"@applitools/scripts": "1.1.0",
|
|
121
123
|
"@applitools/sdk-coverage-tests": "^2.3.18",
|
|
122
|
-
"@applitools/sdk-release-kit": "^1.0.4",
|
|
123
124
|
"@applitools/sdk-shared": "0.9.11",
|
|
124
|
-
"@applitools/test-utils": "1.
|
|
125
|
+
"@applitools/test-utils": "1.3.2",
|
|
125
126
|
"@types/mocha": "^9.0.0",
|
|
126
127
|
"@typescript-eslint/eslint-plugin": "^4.15.1",
|
|
127
128
|
"@typescript-eslint/parser": "^4.15.1",
|
|
@@ -129,7 +130,7 @@
|
|
|
129
130
|
"@wdio/dot-reporter": "^7.16.4",
|
|
130
131
|
"@wdio/local-runner": "^7.16.5",
|
|
131
132
|
"@wdio/mocha-framework": "^7.16.4",
|
|
132
|
-
"chromedriver": "^
|
|
133
|
+
"chromedriver": "^101.0.0",
|
|
133
134
|
"eslint": "^7.9.0",
|
|
134
135
|
"eslint-config-prettier": "^7.2.0",
|
|
135
136
|
"eslint-plugin-mocha-no-only": "^1.1.1",
|
package/types/index.d.ts
CHANGED
|
@@ -633,7 +633,7 @@ export enum CorsIframeHandle {
|
|
|
633
633
|
KEEP = 'KEEP',
|
|
634
634
|
SNAPSHOT = 'SNAPSHOT'
|
|
635
635
|
}
|
|
636
|
-
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 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";
|
|
636
|
+
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";
|
|
637
637
|
export enum DeviceName {
|
|
638
638
|
Blackberry_PlayBook = 'Blackberry PlayBook',
|
|
639
639
|
BlackBerry_Z30 = 'BlackBerry Z30',
|
|
@@ -654,6 +654,7 @@ export enum DeviceName {
|
|
|
654
654
|
Galaxy_S10 = 'Galaxy S10',
|
|
655
655
|
Galaxy_S10_Plus = 'Galaxy S10 Plus',
|
|
656
656
|
Galaxy_S20 = 'Galaxy S20',
|
|
657
|
+
Galaxy_S22 = 'Galaxy S22',
|
|
657
658
|
Galaxy_Tab_S7 = 'Galaxy Tab S7',
|
|
658
659
|
iPad = 'iPad',
|
|
659
660
|
iPad_6th_Gen = 'iPad 6th Gen',
|
|
@@ -704,7 +705,7 @@ export enum FailureReport {
|
|
|
704
705
|
IMMEDIATE = 'IMMEDIATE',
|
|
705
706
|
ON_CLOSE = 'ON_CLOSE'
|
|
706
707
|
}
|
|
707
|
-
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 7" | "iPad Pro (12.9-inch) (3rd generation)" | "iPad (7th generation)" | "iPad (9th generation)" | "iPad Air (2nd generation)" | "iPad Air (4th generation)";
|
|
708
|
+
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)";
|
|
708
709
|
export enum IosDeviceName {
|
|
709
710
|
iPhone_13_Pro_Max = 'iPhone 13 Pro Max',
|
|
710
711
|
iPhone_13_Pro = 'iPhone 13 Pro',
|
|
@@ -720,7 +721,9 @@ export enum IosDeviceName {
|
|
|
720
721
|
iPhone_XS = 'iPhone Xs',
|
|
721
722
|
iPhone_X = 'iPhone X',
|
|
722
723
|
iPhone_8 = 'iPhone 8',
|
|
724
|
+
iPhone_8_Plus = 'iPhone 8 Plus',
|
|
723
725
|
iPhone_7 = 'iPhone 7',
|
|
726
|
+
iPhone_SE = 'iPhone SE (1st generation)',
|
|
724
727
|
iPad_Pro_3 = 'iPad Pro (12.9-inch) (3rd generation)',
|
|
725
728
|
iPad_7 = 'iPad (7th generation)',
|
|
726
729
|
iPad_9 = 'iPad (9th generation)',
|
|
@@ -1410,14 +1413,14 @@ export type TestResultContainerPlain = { readonly exception?: Error; readonly te
|
|
|
1410
1413
|
readonly layoutMatches?: number;
|
|
1411
1414
|
readonly noneMatches?: number;
|
|
1412
1415
|
readonly url?: string;
|
|
1413
|
-
}; 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 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 7" | "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"; }; }; };
|
|
1416
|
+
}; 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"; }; }; };
|
|
1414
1417
|
export class TestResultContainer implements Required<TestResultContainerPlain> {
|
|
1415
1418
|
get testResults(): TestResultsPlain;
|
|
1416
1419
|
getTestResults(): TestResults;
|
|
1417
1420
|
get exception(): Error;
|
|
1418
1421
|
getException(): Error;
|
|
1419
|
-
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 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 7" | "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"; }; };
|
|
1420
|
-
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 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 7" | "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"; }; };
|
|
1422
|
+
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"; }; };
|
|
1423
|
+
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"; }; };
|
|
1421
1424
|
}
|
|
1422
1425
|
export type TestResultsSummaryPlain = {
|
|
1423
1426
|
results: Array<TestResultContainerPlain>;
|
|
@@ -1465,41 +1468,8 @@ export class Logger {
|
|
|
1465
1468
|
fatal(...messages: Array<any>): void;
|
|
1466
1469
|
open(): void;
|
|
1467
1470
|
close(): void;
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
type: "rolling file";
|
|
1471
|
-
dirname?: string;
|
|
1472
|
-
name?: string;
|
|
1473
|
-
maxFileLength?: number;
|
|
1474
|
-
maxFileNumber?: number;
|
|
1475
|
-
};
|
|
1476
|
-
format?: (message: any, options: {
|
|
1477
|
-
formatting?: boolean;
|
|
1478
|
-
label?: string;
|
|
1479
|
-
timestamp?: Date;
|
|
1480
|
-
level?: "silent" | "fatal" | "error" | "warn" | "info";
|
|
1481
|
-
tags?: Record<string, unknown>;
|
|
1482
|
-
color?: string | Array<string>;
|
|
1483
|
-
colors?: { timestamp?: string | Array<string>; level?: {
|
|
1484
|
-
silent?: string | Array<string>;
|
|
1485
|
-
fatal?: string | Array<string>;
|
|
1486
|
-
error?: string | Array<string>;
|
|
1487
|
-
warn?: string | Array<string>;
|
|
1488
|
-
info?: string | Array<string>;
|
|
1489
|
-
}; tags?: string | Array<string>; message?: string | Array<string>; };
|
|
1490
|
-
}) => string;
|
|
1491
|
-
label?: string;
|
|
1492
|
-
timestamp?: false;
|
|
1493
|
-
level?: number | ("silent" | "fatal" | "error" | "warn" | "info");
|
|
1494
|
-
colors?: boolean | { timestamp?: string | Array<string>; level?: {
|
|
1495
|
-
silent?: string | Array<string>;
|
|
1496
|
-
fatal?: string | Array<string>;
|
|
1497
|
-
error?: string | Array<string>;
|
|
1498
|
-
warn?: string | Array<string>;
|
|
1499
|
-
info?: string | Array<string>;
|
|
1500
|
-
}; tags?: string | Array<string>; message?: string | Array<string>; };
|
|
1501
|
-
console?: boolean | CustomLogHandlerPlain;
|
|
1502
|
-
}, "handler">): Logger;
|
|
1471
|
+
tag(name: string, value: any): void;
|
|
1472
|
+
extend(options?: import('node_modules/@applitools/logger/types/logger.d.ts').ExtendOptions): Logger;
|
|
1503
1473
|
extend(label?: string): Logger;
|
|
1504
1474
|
}
|
|
1505
1475
|
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>;
|
package/types/service.d.ts
CHANGED
|
@@ -10,22 +10,25 @@ import type {
|
|
|
10
10
|
TestResultsSummary,
|
|
11
11
|
} from './index'
|
|
12
12
|
|
|
13
|
-
declare
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
13
|
+
declare global {
|
|
14
|
+
namespace WebdriverIO {
|
|
15
|
+
interface ServiceOption extends ConfigurationPlain {
|
|
16
|
+
useVisualGrid?: boolean
|
|
17
|
+
concurrency?: number
|
|
18
|
+
eyes?: ServiceOption
|
|
19
|
+
}
|
|
20
|
+
interface Browser {
|
|
21
|
+
getEyes(): Eyes
|
|
22
|
+
eyesCheck(checkSettings?: CheckSettingsPlain): Promise<void>
|
|
23
|
+
eyesCheck(title: string, checkSettings: CheckSettings): Promise<void>
|
|
24
|
+
eyesSetScrollRootElement(element: Element | Selector): void
|
|
25
|
+
eyesAddProperty(key: string, value: string): void
|
|
26
|
+
eyesClearProperties(): void
|
|
27
|
+
eyesGetTestResults(): Promise<TestResults>
|
|
28
|
+
eyesSetConfiguration(configuration: ConfigurationPlain): void
|
|
29
|
+
eyesGetConfiguration(): Configuration
|
|
30
|
+
eyesGetIsOpen(): boolean
|
|
31
|
+
eyesGetAllTestResults(throwErr: boolean): Promise<TestResultsSummary>
|
|
32
|
+
}
|
|
30
33
|
}
|
|
31
34
|
}
|