UNPKG

@wix/design-system

Version:

@wix/design-system

19 lines (16 loc) 522 B
import { BaseDriver } from '@wix/wix-ui-test-utils/driver-factory'; // For internal use only! export interface buttonDriverFactory extends BaseDriver { click: () => void; focus: () => void; blur: () => void; mouseEnter: () => void; mouseLeave: () => void; getButtonTextContent: () => string; isButtonDisabled: () => boolean; isPrefixIconExists: () => boolean; isSuffixIconExists: () => boolean; } export declare const buttonDriverFactory: (args: { element: Element | null; }) => buttonDriverFactory;