UNPKG

app-walk

Version:

An intuitive guided walkthrough library with UI highlighting and voice narration for web apps.

11 lines (10 loc) 415 B
export type TSelectorType = "css" | "text" | "input" | "xpath" | "testId"; export type TSelector = { selectorType?: TSelectorType; selector: string; index?: number; target?: string; }; export declare function convertToCss(selector: TSelector): string | undefined; export declare function createTestidSelector(testId: string): string; export declare function getRadioSelector(value: string): string;