Element is not currently visible and so may not be interacted with Firefox and Python Element is not currently visible and so may not be interacted with Firefox and Python selenium selenium

Element is not currently visible and so may not be interacted with Firefox and Python


Managed to get it :)posting my answers here if anyone might need it.

What I did was to use the search text box to get the option that I wanted.

driver.find_element_by_xpath('//*[@id="s2id_fetchTypesSelect"]/a/span[1]').click()time.sleep(1)#driver.find_element_by_css_selector('#fetchTypesSelect')time.sleep(1)search= driver.find_element_by_xpath('//*[@id="select2-drop"]/div/input')search.click()search.send_keys('Download Summary')driver.find_element_by_xpath('//*[@id="select2-drop"]/ul/li/div').click()


I've had the same problem before. The fact is that the select element is hidden, in fact the class is hidden-field. The selenium driver cannot see it.