51Testing软件测试论坛
标题:
selenium RC 报Caught an exception attempting to log location; 错误
[打印本页]
作者:
jia8162
时间:
2012-2-15 10:56
标题:
selenium RC 报Caught an exception attempting to log location; 错误
是不是会有了运行RC的时候报
10:06:11.578 ERROR- Caught an exception attempting to log location; this should get noticed soon!
10:06:11.578 ERROR- Unexpected Exception: 没有权限
10:06:11.578 ERROR- Exception details: name -> Error, number -> -2146828218, description -> 没有权限, message -> 没有权限
的错误
那就看你的启动里是否
下面是我的启动函数
public void open()
{
try {
rcConf.setPort(getSeleniumPort());
rcConf.setReuseBrowserSessions(true);
//就在这里只要这个set为true的时候这个报错就会出现了
[color=Red] rcConf.setBrowserSideLogEnabled(false); [/color]
rcConf.setFirefoxProfileTemplate(new File(""));
rcConf.setSingleWindow(true);
rcConf.setTrustAllSSLCertificates(true);
rcConf.setDebugMode(false);
seleniumServer = new SeleniumServer(rcConf);
seleniumServer.start();
Start_browser(getUrlpath(),getBrowserType());
} catch (Exception e)
{
SlClose();
this.logger.error(e.toString());
}
}
复制代码
作者:
maguschen
时间:
2012-2-18 10:33
估计是你启动Selenium server的时候没有带 “-browserSideLog” 参数
java -jar selenium-server.jar -browserSideLog
复制代码
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2