This is so weird, I'm trying to log into a website with selenium & webdriver.
The CSS selector for email input is #ctrl_pageLogin_login
, so I tried to sendkeys to that input but i got this error message:
element not interactable
I tried waiting several seconds , xpath , find by tag name , and i got the same error message each time .
Here is my code :
from selenium import webdriver
browser = webdriver.Chrome()
browser.get("https://www.lpsg.com/login")
browser.find_element_by_css_selector("#ctrl_pageLogin_login").send_keys("email@yahoo.com")
I've been searching for a solution for the past days, hope someone can help.