@applitools/eyes-webdriverio 5.42.1 → 5.42.2
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 +6 -0
- package/package.json +3 -3
- package/types/index.d.ts +6 -3
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-webdriverio",
|
|
3
|
-
"version": "5.42.
|
|
3
|
+
"version": "5.42.2",
|
|
4
4
|
"description": "Applitools Eyes SDK for WebdriverIO",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eyes-webdriverio",
|
|
@@ -111,8 +111,8 @@
|
|
|
111
111
|
"postversion": "bongo postversion"
|
|
112
112
|
},
|
|
113
113
|
"dependencies": {
|
|
114
|
-
"@applitools/core": "2.3.
|
|
115
|
-
"@applitools/eyes-api": "1.13.
|
|
114
|
+
"@applitools/core": "2.3.14",
|
|
115
|
+
"@applitools/eyes-api": "1.13.12",
|
|
116
116
|
"@applitools/spec-driver-webdriverio": "1.4.30"
|
|
117
117
|
},
|
|
118
118
|
"devDependencies": {
|
package/types/index.d.ts
CHANGED
|
@@ -192,7 +192,7 @@ export type ConfigurationPlain = {
|
|
|
192
192
|
matchTimeout?: undefined | number;
|
|
193
193
|
forceFullPageScreenshot?: undefined | boolean;
|
|
194
194
|
waitBeforeScreenshots?: undefined | number;
|
|
195
|
-
stitchMode?: undefined | "Scroll" | "CSS";
|
|
195
|
+
stitchMode?: undefined | "Scroll" | "CSS" | "Resize";
|
|
196
196
|
hideScrollbars?: undefined | boolean;
|
|
197
197
|
hideCaret?: undefined | boolean;
|
|
198
198
|
stitchOverlap?: undefined | number;
|
|
@@ -744,10 +744,13 @@ export enum SessionType {
|
|
|
744
744
|
SEQUENTIAL = 'SEQUENTIAL',
|
|
745
745
|
PROGRESSION = 'PROGRESSION'
|
|
746
746
|
}
|
|
747
|
-
export type StitchModePlain = "Scroll" | "CSS";
|
|
747
|
+
export type StitchModePlain = "Scroll" | "CSS" | "Resize";
|
|
748
748
|
export enum StitchMode {
|
|
749
749
|
SCROLL = 'Scroll',
|
|
750
|
-
|
|
750
|
+
Scroll = 'Scroll',
|
|
751
|
+
CSS = 'CSS',
|
|
752
|
+
RESIZE = 'Resize',
|
|
753
|
+
Resize = 'Resize'
|
|
751
754
|
}
|
|
752
755
|
export type TestResultsStatusPlain = "Passed" | "Failed" | "Unresolved";
|
|
753
756
|
export enum TestResultsStatus {
|