From 2a4a6dca4ad6a4c645f4823a59cba82f223e7518 Mon Sep 17 00:00:00 2001 From: Dirk Uys Date: Tue, 9 Apr 2024 15:25:22 +0200 Subject: [PATCH] Fix locator for react day picker. How did it work before? --- e2e/tests/selenium/locators.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/tests/selenium/locators.py b/e2e/tests/selenium/locators.py index 37d82f5b..318fad4d 100644 --- a/e2e/tests/selenium/locators.py +++ b/e2e/tests/selenium/locators.py @@ -43,7 +43,7 @@ class LearningCircleCreationPageLocators(object): SCHEDULE_MEETINGS_BUTTON = (By.ID, "schedule-meetings-btn") ERROR_MESSAGE = (By.CSS_SELECTOR, ".error-message.minicaps") TINYMCE_FIELD = (By.ID, "tinymce") - CALENDAR_TODAY = (By.CSS_SELECTOR, ".rdp-day--today") + CALENDAR_TODAY = (By.CSS_SELECTOR, ".rdp-day_today") ACCEPT_SUGGESTED_DATES_BUTTON = (By.ID, "accept-suggestions-btn")