Running Selenium 1 locally (not through the grid), all supported browser lines have the * prefix. Assuming Selenium-Server is already running
return new DefaultSelenium("localhost", 4444, "*firefox", "http://www.google.com");
Is this just a convention or has some kind of functional purpose? Please note that running using an unsupported browser type is a great way to get a list of supported browsers.
return new DefaultSelenium("localhost", 4444, "firefox", "http://www.google.com");
source share