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

This commit is contained in:
Rafal Szmit
2024-03-11 13:41:13 +01:00
committed by GitHub
parent 7ed137551c
commit 6bc532abf2

View File

@@ -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}`;