ToolJet/cypress-tests/cypress/constants/selectors/datePicker.js
John Bampton ca5fe39751
all: fix spelling (#4326)
Fixes typos, fixes a file name.

Minor whitespace removal from link
2022-10-11 13:46:40 +05:30

10 lines
492 B
JavaScript

export const datePickerSelector = {
draggableDatePicker: "[data-cy='dragable-widget-datepicker']",
calendarYearSelect: ".react-datepicker__year-select",
calendarMonthSelect: ".react-datepicker__month-select",
calendarDaySelect: ".react-datepicker__day",
calendarTimeInput: "input.react-datepicker-time__input",
validationFeedbackMessage: "[data-cy=date-picker-invalid-feedback]",
calendarMonth: "[aria-label*='month']",
calendarDayOutsideMonth: "[class*='outside-month']",
};