I'm working on Selenium with python and I want to download a file by "click event" using selenium. Below is the code and site. Can someone plz tell me how to complete this code to download both files with name "Export Data" from above url via my code?
from selenium import webdriver
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.common.keys import Keys
browser = webdriver.Firefox()
browser.get("
http://example.com") # Dummy URL
browser.close()
hanks