@applitools/eyes-browser 1.0.0
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 +70 -0
- package/LICENSE +26 -0
- package/dist/index.js +93180 -0
- package/package.json +75 -0
- package/types/BatchClose.d.ts +23 -0
- package/types/Eyes.d.ts +249 -0
- package/types/Logger.d.ts +30 -0
- package/types/Runners.d.ts +40 -0
- package/types/SDK.d.ts +11 -0
- package/types/SessionEventHandlers.d.ts +78 -0
- package/types/enums/AccessibilityGuidelinesVersion.d.ts +5 -0
- package/types/enums/AccessibilityLevel.d.ts +5 -0
- package/types/enums/AccessibilityRegionType.d.ts +8 -0
- package/types/enums/AccessibilityStatus.d.ts +5 -0
- package/types/enums/AndroidDeviceName.d.ts +28 -0
- package/types/enums/AndroidVersion.d.ts +5 -0
- package/types/enums/BrowserType.d.ts +20 -0
- package/types/enums/CorsIframeHandle.d.ts +7 -0
- package/types/enums/DeviceName.d.ts +73 -0
- package/types/enums/FailureReport.d.ts +5 -0
- package/types/enums/IosDeviceName.d.ts +64 -0
- package/types/enums/IosVersion.d.ts +7 -0
- package/types/enums/MatchLevel.d.ts +11 -0
- package/types/enums/ScreenOrientation.d.ts +5 -0
- package/types/enums/SessionType.d.ts +5 -0
- package/types/enums/StitchMode.d.ts +8 -0
- package/types/enums/TestResultsStatus.d.ts +6 -0
- package/types/errors/DiffsFoundError.d.ts +6 -0
- package/types/errors/EyesError.d.ts +2 -0
- package/types/errors/NewTestError.d.ts +6 -0
- package/types/errors/TestFailedError.d.ts +9 -0
- package/types/index.d.ts +61 -0
- package/types/input/AUTProxySettings.d.ts +5 -0
- package/types/input/AccessibilityMatchSettings.d.ts +34 -0
- package/types/input/AccessibilitySettings.d.ts +6 -0
- package/types/input/BatchInfo.d.ts +47 -0
- package/types/input/CheckSettings.d.ts +239 -0
- package/types/input/Configuration.d.ts +383 -0
- package/types/input/CutProvider.d.ts +44 -0
- package/types/input/DebugScreenshotProvider.d.ts +5 -0
- package/types/input/DensityMetrics.d.ts +5 -0
- package/types/input/ExactMatchSettings.d.ts +34 -0
- package/types/input/EyesSelector.d.ts +6 -0
- package/types/input/FloatingMatchSettings.d.ts +50 -0
- package/types/input/Image.d.ts +11 -0
- package/types/input/ImageMatchSettings.d.ts +95 -0
- package/types/input/ImageRotation.d.ts +15 -0
- package/types/input/LazyLoadOptions.d.ts +5 -0
- package/types/input/Location.d.ts +23 -0
- package/types/input/LogHandler.d.ts +45 -0
- package/types/input/OCRRegion.d.ts +9 -0
- package/types/input/OCRSettings.d.ts +6 -0
- package/types/input/PropertyData.d.ts +23 -0
- package/types/input/ProxySettings.d.ts +25 -0
- package/types/input/RectangleSize.d.ts +23 -0
- package/types/input/Region.d.ts +46 -0
- package/types/input/RenderInfo.d.ts +37 -0
- package/types/input/RunnerOptions.d.ts +20 -0
- package/types/input/VisualLocatorSettings.d.ts +4 -0
- package/types/output/ApiUrls.d.ts +38 -0
- package/types/output/AppUrls.d.ts +23 -0
- package/types/output/MatchResult.d.ts +23 -0
- package/types/output/SessionUrls.d.ts +23 -0
- package/types/output/StepInfo.d.ts +50 -0
- package/types/output/TestAccessibilityStatus.d.ts +8 -0
- package/types/output/TestResultContainer.d.ts +31 -0
- package/types/output/TestResults.d.ts +186 -0
- package/types/output/TestResultsSummary.d.ts +18 -0
- package/types/output/TextRegion.d.ts +7 -0
- package/types/output/ValidationInfo.d.ts +21 -0
- package/types/output/ValidationResult.d.ts +18 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/** @undocumented */
|
|
2
|
+
export type ValidationInfo = {
|
|
3
|
+
readonly validationId: number;
|
|
4
|
+
readonly tag: string;
|
|
5
|
+
};
|
|
6
|
+
/** @undocumented */
|
|
7
|
+
export declare class ValidationInfoData implements Required<ValidationInfo> {
|
|
8
|
+
private _info;
|
|
9
|
+
/** @internal */
|
|
10
|
+
constructor(info: ValidationInfo);
|
|
11
|
+
get validationId(): number;
|
|
12
|
+
getValidationId(): number;
|
|
13
|
+
get tag(): string;
|
|
14
|
+
getTag(): string;
|
|
15
|
+
/** @internal */
|
|
16
|
+
toObject(): ValidationInfo;
|
|
17
|
+
/** @internal */
|
|
18
|
+
toJSON(): ValidationInfo;
|
|
19
|
+
/** @internal */
|
|
20
|
+
toString(): string;
|
|
21
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/** @undocumented */
|
|
2
|
+
export type ValidationResult = {
|
|
3
|
+
readonly asExpected: boolean;
|
|
4
|
+
};
|
|
5
|
+
/** @undocumented */
|
|
6
|
+
export declare class ValidationResultData implements Required<ValidationResult> {
|
|
7
|
+
private _result;
|
|
8
|
+
/** @internal */
|
|
9
|
+
constructor(result: ValidationResult);
|
|
10
|
+
get asExpected(): boolean;
|
|
11
|
+
getAsExpected(): boolean;
|
|
12
|
+
/** @internal */
|
|
13
|
+
toObject(): ValidationResult;
|
|
14
|
+
/** @internal */
|
|
15
|
+
toJSON(): ValidationResult;
|
|
16
|
+
/** @internal */
|
|
17
|
+
toString(): string;
|
|
18
|
+
}
|