2015-02-08 117 views
2
09:39:51.984 INFO - Got result: Failed to start new browser session: org.openqa.selenium.server.RemoteCommandException: Error while launching browser on session null 
09:39:52.002 INFO - Command request: getNewBrowserSession[*firefox, http://website.localhost] on session null 
09:39:52.002 INFO - creating new remote session 
09:39:52.003 INFO - Allocated session 4b3951d894ed4a2c94b7fd9758cd5554 for http://website.localhost, launching... 
jar:file:/usr/bin/selenium-server-standalone-2.41.0.jar!/customProfileDirCUSTFFCHROME 
09:39:52.071 INFO - Preparing Firefox profile... 
09:40:12.129 ERROR - Failed to start new browser session, shutdown browser and clear all session data 
java.lang.RuntimeException: Timed out waiting for profile to be created! 
    at org.openqa.selenium.server.browserlaunchers.FirefoxChromeLauncher.waitForFullProfileToBeCreated(FirefoxChromeLauncher.java:307) 
    at org.openqa.selenium.server.browserlaunchers.FirefoxChromeLauncher.populateCustomProfileDirectory(FirefoxChromeLauncher.java:119) 
    at org.openqa.selenium.server.browserlaunchers.FirefoxChromeLauncher.launch(FirefoxChromeLauncher.java:89) 
    at org.openqa.selenium.server.browserlaunchers.FirefoxChromeLauncher.launchRemoteSession(FirefoxChromeLauncher.java:346) 
    at org.openqa.selenium.server.browserlaunchers.FirefoxLauncher.launchRemoteSession(FirefoxLauncher.java:114) 
    at org.openqa.selenium.server.BrowserSessionFactory.createNewRemoteSession(BrowserSessionFactory.java:400) 
    at org.openqa.selenium.server.BrowserSessionFactory.getNewBrowserSession(BrowserSessionFactory.java:144) 
    at org.openqa.selenium.server.BrowserSessionFactory.getNewBrowserSession(BrowserSessionFactory.java:105) 
    at org.openqa.selenium.server.SeleniumDriverResourceHandler.getNewBrowserSession(SeleniumDriverResourceHandler.java:809) 
    at org.openqa.selenium.server.SeleniumDriverResourceHandler.doCommand(SeleniumDriverResourceHandler.java:435) 
    at org.openqa.selenium.server.SeleniumDriverResourceHandler.handleCommandRequest(SeleniumDriverResourceHandler.java:405) 
    at org.openqa.selenium.server.SeleniumDriverResourceHandler.handle(SeleniumDriverResourceHandler.java:151) 
    at org.openqa.jetty.http.HttpContext.handle(HttpContext.java:1526) 
    at org.openqa.jetty.http.HttpContext.handle(HttpContext.java:1479) 
    at org.openqa.jetty.http.HttpServer.service(HttpServer.java:920) 
    at org.openqa.jetty.http.HttpConnection.service(HttpConnection.java:820) 
    at org.openqa.jetty.http.HttpConnection.handleNext(HttpConnection.java:986) 
    at org.openqa.jetty.http.HttpConnection.handle(HttpConnection.java:837) 
    at org.openqa.jetty.http.SocketListener.handleConnection(SocketListener.java:243) 
    at org.openqa.jetty.util.ThreadedServer.handle(ThreadedServer.java:358) 
    at org.openqa.jetty.util.ThreadPool$PoolThread.run(ThreadPool.java:537) 
09:40:12.131 INFO - Got result: Failed to start new browser session: org.openqa.selenium.server.RemoteCommandException: Error while launching browser on session null 
09:40:12.143 INFO - Command request: getNewBrowserSession[*firefox, http://website.localhost] on session null 

我在做什么?无法启动新的浏览器会话:org.openqa.selenium.server.RemoteCommandException:在会话null上启动浏览器时出错

步骤1:启动毂

集线器是中心点将接收所有的测试请求和分发它们的正确节点。

打开命令提示符并导航到您复制了selenium-server-standalone文件的目录。键入以下命令:

java -jar selenium-server-standalone-2.14.0.jar -role hub

第2步:启动节点

不管你是否要运行新的webdriver功能在一个网格,或使用Selenium 1 RC功能一格,或两者同时,您使用相同的selenium-server-standalone jar文件来启动节点。

java -jar selenium-server-standalone-2.14.0.jar -role node -hub http://localhost:44444/grid/register(44444这里是我工作的环境)

+0

现在我收到此错误: 例外 '的RuntimeException' 有消息“无效的响应,同时访问在Selenium服务器的 'http://本地主机:44444 /硒服务器/驱动器/':定时out after 30000ms'in phar:///usr/bin/phpunit/phpunit-selenium/Extensions/SeleniumTestCase/Driver.php:1066 请帮忙!! phpunit版本4.4.5 – shab 2015-02-10 22:47:58

+0

您确认服务器正在运行吗?打开浏览器并转到集线器。查看集线器支持的浏览器。确保Firefox是其中之一。我们能否看到你的代码如何构建远程驱动程序? – jrock2004 2015-02-11 04:51:17

回答

1

这是由于硒和Firefox之间的兼容性问题。

您需要升级到最新的硒服务器2.44

相关问题