I am automatically downloading some links through a website and it is getting saved by default in Download directory but I want to save those links to the desired location as per the need. I am using Python 3.
I am using this code but it is not working.
options = webdriver.ChromeOptions()
options.add_argument("download.default_directory=C://Users//ASUS//Downloads")
driver = webdriver.Chrome(r"C:\Users\ASUS\Downloads\chromedriver.exe",chrome_options=options)
driver.implicitly_wait(30)
Any type of help will be appreciated.
Thank you..