import { BaseUniDriver } from 'wix-ui-test-utils/unidriver'; import { StatusIndications } from '../common'; export interface VariableInputUniDriver extends BaseUniDriver { /** Returns true if component is disabled */ isDisabled(): Promise; /** Get the text content of the component*/ getContent(): Promise; /** Get the text content of the component placeholder*/ getPlaceholder(): Promise; /** Enter text as value to the component*/ enterText(value: string): Promise; /** Simulate blur event */ blur(): Promise; /** Simulate focus event */ focus(): Promise; /** Returns true if error indication exists */ hasError(): Promise; /** Get the error message content */ getErrorMessage(): Promise; /** Returns true if warning indication exists */ hasWarning(): Promise; /** Get the warning message content */ getWarningMessage(): Promise; // Status hasStatus: (status: StatusIndications) => Promise; getStatusMessage: () => Promise; }