I'm testing a web application and the login test works fine in Chrome but when I try to run the test in IExplorer I found a problem:
I sent the email to login with
Driver.FindElement(By.Id("xxxxxxxx")).SendKeys("[email protected]")
In Chrome when I run the test is writing [email protected]
in the text box
But when I execute the test in IExplorer using the IEDriverServer
the text box is filled with "test2test.com
", is replacing the @
key with a 2.
You can try this:
Try this Answer
Sending '@' special character with SendKeys to IE 11