fix lcl downloader

This commit is contained in:
Gabriel Augendre 2024-11-29 20:19:39 +01:00
parent 8f1662a861
commit cdf719f195
2 changed files with 3 additions and 3 deletions

View file

@ -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)

View file

@ -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 <gabriel@augendre.info>"]