I have been trying to automate Amazon Seller Central's storage report download. I have tried to use the select function for other dropdown options. Here is what I coded for other dropdown menus and worked:
select = Select(driver.find_element_by_id('downloadDateDropdown'))
select.select_by_value('0')
However, when I tried this method on another dropdown which has a different shape and design, I keep getting a message that python cannot find the element.
The following is the code from Seller Central that I have been trying to figure out automating using Selenium: Code from Seller Central
Thank you for your help!