--
You received this message because you are subscribed to the Google Groups "webdriver" group.
To post to this group, send email to webd...@googlegroups.com.
To unsubscribe from this group, send email to webdriver+...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/webdriver?hl=en.
What’s bizarre isn’t the result, it’s that Google decided to use “Chrome” as their browser’s name after the Mozilla Foundation used it for many years in Firefox. Which results in :
· In the Selenium RC API, “*chrome” means the Firefox browser. So “Selenium selenium = new DefaultSelenium("localhost",4444,"*chrome","http://www.google.com");” launches Firefox. To launch Google’s Chrome browser, use “*googlechrome” instead.
· In the WebDriver API, the ChromeDriver launches Google’s Chrome browser. Firefox is launched by the FirefoxDriver.
Ross
--