Hello, I have this issue - on slow server machine (virtual winserver 2008R2, 2GbRAM) I'm filling fields like:
var by = By.Id("elementId");
_driver.Click(by);
_driver.FindElement(by).Clear();
Thread.Sleep(250);
_driver.FindElement(by).SendKeys(value);
Thread.Sleep(250);
_driver.FindElement(by).SendKeys(Keys.Tab);
Thread.Sleep(250);And each field fills few times repeatedly.How could I avoid it?On fast developer machine (Win7x64) all works fine.PS Chrome 21.0.1180.75chromedriver 22.0.1203Selenium Webdriver 2.25.1--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To post to this group, send email to seleniu...@googlegroups.com.
To unsubscribe from this group, send email to selenium-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/selenium-users/-/pxBVca1W15kJ.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "Selenium Users" group.
To post to this group, send email to seleniu...@googlegroups.com.
To unsubscribe from this group, send email to selenium-user...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/selenium-users/-/tWzCCutVS8QJ.
(return _driver.FindElement(by).Displayed) && (_driver.FindElement(by).Enabled)bool found =_driver.FindElement(by).Displayed;
Thread.Sleep(250);
return (found && (_driver.FindElement(by).Enabled));To view this discussion on the web visit https://groups.google.com/d/msg/selenium-users/-/0hglqh9UiEIJ.