Posts by Alexandre Almeida • 21 points
2 posts
-
1
votes2
answers969
viewsA: python & Selenium - wait download finish to close the browser
William, thank you so much, I found a code recently and forgot to share here with you. def every_downloads_chrome(driver): if not driver.current_url.startswith("chrome://downloads"):…
-
0
votes2
answers969
viewsQ: python & Selenium - wait download finish to close the browser
How can I just close the webdriver when my download is finished. Time Sleep didn’t help me much because times vary a lot. follows my code: ExportCSV = WebDriverWait(driver, 10).until(…