@augment-vir/test
Version:
A universal testing suite that works with Mocha style test runners _and_ Node.js's built-in test runner.
11 lines (10 loc) • 370 B
TypeScript
import { type UniversalTestContext } from '../augments/universal-testing-suite/universal-test-context.js';
/**
* Clicks a label to select its input and then types the given text.
*
* @category Internal
*/
export declare function enterTextByLabel(testContext: Readonly<UniversalTestContext>, { label, text }: {
label: string;
text: string;
}): Promise<void>;