@applitools/eyes-browser 1.6.16 → 1.6.18
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 +248 -0
- package/dist/index.js +1049 -144
- package/package.json +3 -3
- package/types/input/CheckSettings.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-browser",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.18",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"applitools",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"test": "run playwright test"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@applitools/eyes": "1.
|
|
54
|
+
"@applitools/eyes": "1.42.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@applitools/test-server": "1.4.
|
|
57
|
+
"@applitools/test-server": "1.4.4",
|
|
58
58
|
"@playwright/test": "1.55.1",
|
|
59
59
|
"@types/node": "^12.20.55",
|
|
60
60
|
"@types/path-browserify": "^1.0.1",
|
|
@@ -100,6 +100,7 @@ export type CheckSettingsAutomation<TSpec extends Core.SpecType, TRegionReferenc
|
|
|
100
100
|
hooks?: {
|
|
101
101
|
beforeCaptureScreenshot: string;
|
|
102
102
|
};
|
|
103
|
+
/** @deprecated Use `Configuration.matchTimeout` instead */
|
|
103
104
|
timeout?: number;
|
|
104
105
|
waitBeforeCapture?: number | (() => Promise<void>);
|
|
105
106
|
lazyLoad?: boolean | LazyLoadOptions;
|
|
@@ -217,6 +218,7 @@ export declare class CheckSettingsAutomationFluent<TSpec extends Core.SpecType =
|
|
|
217
218
|
protected _settings: CheckSettingsAutomation<TSpec>;
|
|
218
219
|
protected static readonly _spec: Core.SpecDriver<Core.SpecType>;
|
|
219
220
|
protected _spec: Core.SpecDriver<TSpec>;
|
|
221
|
+
protected _usedDeprecations: string[];
|
|
220
222
|
protected _isElementReference(value: any): value is ElementReference<TSpec>;
|
|
221
223
|
protected _isSelectorReference(selector: any): selector is SelectorReference<TSpec>;
|
|
222
224
|
protected _isFrameReference(value: any): value is FrameReference<TSpec>;
|
|
@@ -255,6 +257,9 @@ export declare class CheckSettingsAutomationFluent<TSpec extends Core.SpecType =
|
|
|
255
257
|
[key: string]: any;
|
|
256
258
|
}): this;
|
|
257
259
|
useSystemScreenshot(useSystemScreenshot?: boolean): this;
|
|
260
|
+
/**
|
|
261
|
+
* @deprecated Use `Configuration.matchTimeout` during `eyes.open()` instead
|
|
262
|
+
*/
|
|
258
263
|
timeout(timeout: number): typeof this;
|
|
259
264
|
waitBeforeCapture(waitBeforeCapture: number | (() => Promise<void>)): typeof this;
|
|
260
265
|
lazyLoad(options?: LazyLoadOptions | boolean): typeof this;
|