AAE-21058-fix-illegal-selector (#9422)

This commit is contained in:
Rafal Szmit
2024-03-27 23:29:39 +01:00
committed by Aleksander Sklorz
parent cd2ecbe987
commit 0d93986bd8
@@ -26,7 +26,7 @@ export class DatePickerCalendarPage {
datePicker = $(`${materialLocators.Calendar.root}[id*="${materialLocators.Datepicker.root}"]`);
nextMonthButton = $(`button[class*="${materialLocators.Calendar.button('next')}"]`);
previousMonthButton = $(`button[class*="${materialLocators.Calendar.button('previous')}"]`);
todayDate = TestElement.byCss(`div${materialLocators.Calendar.body.today}`);
todayDate = TestElement.byCss(`div${materialLocators.Calendar.body.today.class}`);
periodButton = $(`button[class*=${materialLocators.Calendar.button('period')}]`);
focusedElement = `div${materialLocators.Calendar.body.cell.content.class}${materialLocators.Focus.indicator}`;