RuntimeException:无法启动Selenium会话:内部服务器错误

时间:2009-06-11 18:22:00

标签: java junit selenium bamboo

我正在尝试使用硒来检测空中碰撞问题(同时编辑)。

所以我开始使用以下(超级类)

的selenium会话A.
selenium = new MASSelenium(serverHost, serverPort, *iexplore, browserURL);
selenium.start();
selenium.open("index.cgi");

然后我尝试启动一个不同的selenium会话B指向与超类(Sub Class)不同的浏览器:

selenium2 = new MASSelenium(getServerHost(), getServerPort(), *firefox, getBrowserURL());
selenium2.start();
selenium2.open("index.cgi");

它在我的本地机器上工作正常(行为符合预期)但是当我在远程机器上运行相同的测试时(使用Bamboo构建工具),我得到了这个例外:

java.lang.RuntimeException: Could not start Selenium session: Internal Server Error
    at com.thoughtworks.selenium.DefaultSelenium.start(DefaultSelenium.java:89)
    at gov.baba.arc.mas.selenium.tests.SimultaneousEditingConflictDetected.setUp(SimultaneousEditingConflictDetected.java:78)
Caused by: com.thoughtworks.selenium.SeleniumException: Internal Server Error
    at com.thoughtworks.selenium.HttpCommandProcessor.throwAssertionFailureExceptionOrError(HttpCommandProcessor.java:97)
    at com.thoughtworks.selenium.HttpCommandProcessor.getCommandResponseAsString(HttpCommandProcessor.java:168)
    at com.thoughtworks.selenium.HttpCommandProcessor.executeCommandOnServlet(HttpCommandProcessor.java:104)
    at com.thoughtworks.selenium.HttpCommandProcessor.doCommand(HttpCommandProcessor.java:86)

知道为什么会这样吗?

0 个答案:

没有答案