wix-style-react
Version:
wix-style-react
18 lines (16 loc) • 512 B
TypeScript
import { BaseDriver } from '@wix/wix-ui-test-utils/driver-factory';
export interface SectionHelperDriver extends BaseDriver {
titleText: () => string;
actionText: () => string;
clickAction: () => void;
clickClose: () => void;
isCloseButtonDisplayed: () => boolean;
textContent: () => string;
isWarning: () => boolean;
isStandard: () => boolean;
isDanger: () => boolean;
isExperimentalDark: () => boolean;
isSuccess: () => boolean;
isPremium: () => boolean;
isPreview: () => boolean;
}