diff --git a/ofx_processor/downloaders/lcl.py b/ofx_processor/downloaders/lcl.py index bb9c248..aaa5152 100644 --- a/ofx_processor/downloaders/lcl.py +++ b/ofx_processor/downloaders/lcl.py @@ -79,8 +79,8 @@ class LclDownloader: end = datetime.date.today() - datetime.timedelta(days=1) start = end - datetime.timedelta(days=9) - self._type_nth(By.CSS_SELECTOR, "input.range-picker-input", 0, start.strftime("%d/%m/%Y")) - self._type_nth(By.CSS_SELECTOR, "input.range-picker-input", 1, end.strftime("%d/%m/%Y")) + self._type_nth(By.ID, "mat-input-0", 0, start.strftime("%d/%m/%Y")) + self._type_nth(By.ID, "mat-input-1", 0, end.strftime("%d/%m/%Y")) self._click(By.CSS_SELECTOR, "ui-desktop-select button") self._click_nth(By.CSS_SELECTOR, "ui-select-list ul li", 2) diff --git a/pyproject.toml b/pyproject.toml index 6fcf186..27b576c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ofx-processor" -version = "4.5.2" +version = "4.5.3" description = "Personal ofx processor" readme = "README.md" authors = ["Gabriel Augendre "]