Error with SendKeys IEDriverServer selenium -


i'm test web application , login test works fine in chrome when try run test in iexplorer found problem:

i sent email login with

driver.findelement(by.id("xxxxxxxx")).sendkeys("test@test.com") 

in chrome when run test writing test@test.com in text box when execute test in iexplorer using iedriverserver text box filled "test2test.com", replacing @ key 2.

thanks in advanced help

you can try this:

string email="test@test.com" driver.findelement(by.id("xxxxxxxx")).sendkeys(email) 

try answer

sending '@' special character sendkeys ie 11


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -