I have a problem with selenium, where it doesn't send the e-mail address properly. the text it sends looks like this: myemailemail.com
the code I'm using looks like this:
EMAIL_LOGIN = driver.find_element_by_id("email")
EMAIL_LOGIN.send_keys(Keys.CONTROL + "a")
EMAIL_LOGIN.send_keys(Keys.DELETE)
EMAIL_LOGIN.send_keys("myemail@email.com")
I tried putting the @ in a variable, still doesn't work. I also tried to put the email itself in a variable, and still nothing.