UNPKG

wix-style-react

Version:
21 lines (19 loc) 831 B
import calendarDriverFactory from '../Calendar/Calendar.protractor.driver'; import dropdownLayoutDriverFactory from '../DropdownLayout/DropdownLayout.protractor.driver'; export var calendarPanelDriverFactory = function calendarPanelDriverFactory(component) { return { /** returns the component element */ element: function element() { return component; }, /** returns the component calendar driver */ calendarDriver: function calendarDriver() { return calendarDriverFactory(component.$('[data-hook="calendar"]')); }, /** returns the component dropdown layout driver */ presetsDropdownLayoutDriver: function presetsDropdownLayoutDriver() { return dropdownLayoutDriverFactory(component.$('[data-hook="dropdown-layout"]')); } }; }; export default calendarPanelDriverFactory;