wix-style-react
Version:
wix-style-react
11 lines (9 loc) • 320 B
TypeScript
import { BaseDriver } from '@wix/wix-ui-test-utils/driver-factory';
export interface ColorPickerDriver extends BaseDriver {
confirm: () => void;
cancel: () => void;
clickOnPreviousColor: () => void;
historyPanelExists: () => boolean;
historyCurrentColor: () => string;
historyPreviousColor: () => string;
}