Hi. Ima trying to write and email into TextBox on google login page but everytime when the code has to write "@" it writes some random thing. It is Either some part of my code, some error that happened in past.. i dont know why is it happening. The email is stored in a string in config.json
Example
email'WebElement' is not iterablegmail.com
should look like
Code:
time.sleep(2)
EmailTextBox = "//*[@id='identifierId']"
EmailTextBox = driver.find_element(By.XPATH, EmailTextBox)
EmailTextBox.send_keys(GmailEmail)
Json Config:
{
"GmailEmail" : "[email protected]"
}
Python 3.12
selenium 4