I'm experiencing the problem that IWebElement.SendKeys() does not fill entire input field that I'm aiming. Here is the code example:
...
IWebElement el1 = driver.FindElemenet(By.Id("el1Id"));
IWebElement el2 = driver.FindElemenet(By.Id("el2Id"));
el1.SendKeys("sometext");
el2.SendKeys("someothertext");
...
So, sometimes, instead of filling el1Id with "sometext", it proceeds with el2Id and in el1Id it is only filled "somet" for example. This is happening in like 30% of cases, number of typed characters differs from case to case. I'm using Firefox 8.0