How can I set selenium chrome driver typing speed?

automated-tests, google-chrome, java, selenium

Solution

In Selenium 1 you can use setSpeed method, in Selenium 2 (aka WebDriver) is, unfortunately, no option like this, at best you can use Implicit waits. However is not really recommended to slow down the Selenium for all tests, you should add waits only for tests which really need to wait for some action to complete.

Problem

I have a ui test that uses selenium chrome driver. I want to set the form filling speed to be slower. I have googled but couldn't see how. Does someone know how to do this?

Original source