UNPKG

wix-style-react

Version:
14 lines (12 loc) 349 B
import { BaseDriver } from 'wix-ui-test-utils/driver-factory'; export interface AddItemDriver<T> extends BaseDriver { element: () => T; getText: () => string; textExists: () => boolean; getTooltipContent: () => string; click: () => void; getSubtitle: () => string; isFocused: () => boolean; focus: () => void; blur: () => void; }