UNPKG

wix-style-react

Version:
16 lines 602 B
import { baseUniDriverFactory } from '../test-utils/utils/unidriver'; export const fillPreviewDriverFactory = base => { const { element, exists } = baseUniDriverFactory(base); return { exists, element, /** clicks on button */ click: () => base.$('[data-hook="fill-preview-button"]').click(), /** returns true if item is selected */ isSelected: async () => base .$('[data-hook="fill-preview-button"]') .attr('data-selected') .then(x => x === 'true'), }; }; //# sourceMappingURL=FillPreview.uni.driver.js.map