Is there any method in WebDriver with Java for controlling speed of browser?
When I use Selenium RC there is a method setSpeed as: selenium.setSpeed("500"); What is the way to control speed of browser in Selenium WebDriver? You can use Thread.Sleep(500) (or equivalent) in whatever language you are using to run webdriver. This will cause the thread to pause for an exact number of milliseconds. Alternatively you can use explicit or implicit waits described here . Explicit waits allow you to define an ExpectedCondition . Webdriver will check the condition every 500 milliseconds until it returns true, (after which execution will resume immediately). Implicit waits cause