UNPKG

@wix/design-system

Version:

@wix/design-system

23 lines 1.02 kB
import { UniDriver } from '@wix/unidriver-core'; export declare const inputWithLabelDriverFactory: (base: UniDriver) => { /** Gets the amount of rendered suffixes */ getSuffixesCount: () => Promise<number>; /** Returns true if an error status message exists */ hasErrorMessage: () => Promise<boolean>; /** Gets the error status message */ getErrorMessage: () => Promise<string>; getValue: () => Promise<string>; clickInput: () => Promise<void>; enterText: (value: string) => Promise<void>; getLabelText: () => Promise<string>; isCustomInput: () => Promise<boolean>; isFocusedStyle: () => Promise<boolean>; getMaxLength: () => Promise<string | null>; getPlaceholder: () => Promise<string | null>; exists: () => Promise<boolean>; element: () => Promise<any>; click: () => Promise<void>; base: UniDriver; }; export type InputWithLabelUniDriver = ReturnType<typeof inputWithLabelDriverFactory>; //# sourceMappingURL=InputWithLabel.uni.driver.d.ts.map