ui-omakase-framework
Version:
A comprehensive E2E testing framework library with pre-built Cucumber step definitions and utilities for web automation testing
6 lines (5 loc) • 315 B
TypeScript
export declare const randomInputTypes: readonly ["email", "password"];
export type RandomInputType = typeof randomInputTypes[number];
export declare const randomEmail: () => string;
export declare const randomPassword: () => string;
export declare const getRandomData: (randomInputType: RandomInputType) => string;