e2ed
Version:
E2E testing framework over Playwright
8 lines (7 loc) • 330 B
TypeScript
import type { Selector, WithStabilizationInterval } from '../types/internal';
type Options = WithStabilizationInterval;
/**
* Drags an element by an offset.
*/
export declare const drag: (selector: Selector, dragOffsetX: number, dragOffsetY: number, { stabilizationInterval, ...options }?: Options) => Promise<void>;
export {};