ElementNotInteractableException: Message: element not interactable error while sending text to Email field on Quora using Selenium with Python

find_element_by_name("email")

is present multiple times in DOM. So that wouldn’t work.

You can try with this css selector :

input[class*='header_login_text_box'][name="email"]  

Code :

username = browser.find_element_by_css_selector("input[class*='header_login_text_box'][name="email"]")

username.send_keys("[email protected]")

Leave a Comment