@payfit/unity-components
Version:
13 lines (12 loc) • 377 B
TypeScript
import { PlayCtx } from '../../types/testing.js';
/**
* Factory to get select testing utils
* @param context the story context
*/
export declare const getTestingUtilsSelect: (context: PlayCtx) => {
selectOption: ({ labelText, optionName, container, }: {
labelText: string;
optionName: string;
container?: HTMLElement;
}) => Promise<void>;
};