e2ed
Version:
E2E testing framework over Playwright
9 lines (8 loc) • 299 B
TypeScript
import type { Locator } from '@playwright/test';
import type { Selector } from '../types/internal';
type Options = Parameters<Locator['clear']>[0];
/**
* Clears the input field (of any type).
*/
export declare const clearInput: (selector: Selector, options?: Options) => Promise<void>;
export {};