UNPKG

e2ed

Version:

E2E testing framework over Playwright

9 lines (8 loc) 291 B
import type { Locator } from '@playwright/test'; import type { Selector } from '../types/internal'; type Options = Parameters<Locator['dblclick']>[0]; /** * Double-clicks an element. */ export declare const doubleClick: (selector: Selector, options?: Options) => Promise<void>; export {};