e2ed
Version:
E2E testing framework over Playwright
9 lines (8 loc) • 320 B
TypeScript
import type { Locator } from '@playwright/test';
import type { Selector } from '../types/internal';
type Options = Parameters<Locator['fill']>[1];
/**
* Types the specified text into an input element.
*/
export declare const typeText: (selector: Selector, text: string, options?: Options) => Promise<void>;
export {};