@wdio/image-comparison-core
Version:
Image comparison core module for @wdio/visual-service - WebdriverIO visual testing framework
14 lines • 511 B
TypeScript
import type { DeviceRectangles } from './rectangles.interfaces.js';
export interface GetElementPositionDesktopOptions {
/** The inner height of the screen */
innerHeight: number;
/** The screenshot height */
screenshotHeight: number;
}
export interface GetElementPositionAndroidOptions {
/** The device rectangles */
deviceRectangles: DeviceRectangles;
/** Is the device Android */
isAndroidNativeWebScreenshot: boolean;
}
//# sourceMappingURL=elementPosition.interfaces.d.ts.map