wix-style-react
Version:
23 lines (20 loc) • 705 B
TypeScript
import * as React from 'react';
import { BaseDriver } from 'wix-ui-test-utils/driver-factory';
import { StatusIndications } from '../common';
export interface TimeInputDriver extends BaseDriver {
getValue: () => string;
isDisabled: () => boolean;
clickTickerUp: () => void;
clickTickerDown: () => void;
isAmPmIndicatorExist: () => boolean;
toggleAmPmIndicator: () => void;
getAmPmIndicatorText: () => string;
getCustomSuffix: () => React.ReactNode;
isRtl: () => boolean;
isShowSeconds: () => boolean;
setValue: (text: string) => void;
blur: () => void;
// Status
hasStatus: (status: StatusIndications) => Promise<boolean>;
getStatusMessage: () => Promise<string | null>;
}