(Previously located: https://github.com/SeleniumHQ/selenium/wiki/Selenium-Emulation) Backing Selenium with WebDriver The Java and .NET versions of WebDriver provide implementations of the existing Selenium API. In Java, it is used like so: // You may use any WebDriver implementation. Firefox is used here as an example WebDriver driver = new FirefoxDriver(); // A "base url", used by selenium to resolve relative URLs String baseUrl = "http://www.google.com"; // Create the Selenium implementatio...