wix-style-react
Version:
11 lines (9 loc) • 340 B
TypeScript
import { BaseDriver } from 'wix-ui-test-utils/driver-factory';
export interface PageDriver extends BaseDriver {
hasClass: (className: string) => boolean;
backgroundImageExists: () => boolean;
gradientClassNameExists: () => boolean;
tailExists: () => boolean;
gradientContainerHeight: () => string;
getPageHtml: () => string;
}