@Parameters({"browser", "http.port","contextPath"})
public void setup(@Optional("iexplore") String browser, @Optional("http.port") int httpPort, @Optional("contextPath") String contextPath) {
logger.debug("Selenium client starting with {} ...", browser);
this.httpPort = httpPort;
logger.debug("http port is {}", httpPort);
selenium = new DefaultSelenium("localhost", 4444, "*" + browser, String.format("http://localhost:%d/%s/index", httpPort, contextPath));
this.contextPath = contextPath;
selenium.start();
selenium.setTimeout("600000");
}