I am facing an error that is "Element is not currently interactable and may not be manipulated".
I am using selenium for web scraping. The site is "https://openload.co/login".
In here I am trying to input values through element.send_keys("ABC")
and fill in the fields. I tried to fill it by find_element_by_id("loginform-email")
and then use send_keys. So i am getting the above error.
Also I tried to use driver.find_element_by_xpath("""/*[@id="loginform-email"]""")
but I get the same error i.e selenium.common.exceptions.InvalidElementStateException: Message: invalid element state: Element is not currently interactable and may not be manipulated
I am aware that there is a hidden element when i use inspect element in that particular site. Can anyone help me deal with the above problem.How to manupulate or remove the hidden element.