Change implicit wait to 30 seconds

This commit is contained in:
Gabriel Augendre 2022-05-17 12:12:19 +02:00
parent 8cd40d71f6
commit 7ed84a47fe

View file

@ -31,7 +31,7 @@ class LclDownloader:
"browser.helperApps.neverAsk.saveToDisk", "application/x-ofx" "browser.helperApps.neverAsk.saveToDisk", "application/x-ofx"
) )
self.selenium = webdriver.Firefox(options=options) self.selenium = webdriver.Firefox(options=options)
self.selenium.implicitly_wait(10) self.selenium.implicitly_wait(30)
def download(self) -> str: def download(self) -> str:
selenium = self.selenium selenium = self.selenium