51Testing软件测试论坛
标题:
selenium hub端口被占,什么命令可以指定端口号
[打印本页]
作者:
wiyee
时间:
2010-6-8 14:59
标题:
selenium hub端口被占,什么命令可以指定端口号
启动selenium hub时被告知端口被占,请问什么命令可以给他指定另一个可用的端口号?
作者:
小米啊
时间:
2010-6-8 15:39
grid_configuration.yml 这个文件里面有一个port改成你想要的吧
作者:
parkyb
时间:
2010-7-21 19:04
启动SERVER 时, JAVA -JAR SELENIUM-SERVER.JAR -DPORT=555
或者直接自定义
private void startSeleniumSever()throws Exception{
// String template = "E:/Ecplise/Workspace/Frank01/selenium-templates";
RemoteControlConfiguration rcConf = new RemoteControlConfiguration();
rcConf.setPort(4444);
rcConf.setReuseBrowserSessions(true);
SeleniumServer.setBrowserSideLogEnabled(true);
//rcConf.SeleniumServer.setSingleWindow(true);
//rcConf.setFirefoxProfileTemplate(new File(template));
seleniumServer = new SeleniumServer(rcConf);
seleniumServer.start();
}
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2