wix-style-react
Version:
13 lines (10 loc) • 403 B
JavaScript
import { browserPreviewWidgetDriverFactory as publicDriverFactory } from '../BrowserPreviewWidget.uni.driver';
import { dataHooks } from '../constants';
export const browserPreviewWidgetPrivateDriverFactory = base => {
return {
...publicDriverFactory(base),
/** Get browser content area node */
getBrowserContent: () =>
base.$(`[data-hook="${dataHooks.browserContent}"]`),
};
};