e2ed
Version:
E2E testing framework over Playwright
8 lines (7 loc) • 332 B
TypeScript
import type { Selector, WithStabilizationInterval } from '../types/internal';
type Options = WithStabilizationInterval;
/**
* Drags an element onto another one.
*/
export declare const dragToElement: (selector: Selector, destinationSelector: Selector, { stabilizationInterval, ...options }?: Options) => Promise<void>;
export {};