硒 + PHPUnit:sessionId 不应为 null;这次会议已经开始了吗?
我正在使用 PHP 运行 Selenium RC。 我运行了一个简单的登录测试,成功完成,但在关闭浏览器之前,出现以下错误:
23:50:09.969 信息 - 命令请求:会话上的 testComplete[, ] d7a1effeabc24b0b9b46ad6fdb3eebec 23:50:09.969 信息 - 杀死 Google Chrome...23:50:10.286 INFO - 得到结果:会话正常 d7a1effeabc24b0b9b46ad6fdb3eebec 23:50:10.349 信息 - 命令请求: 会话 null 23:50:10.351 上的 getLocation[, ] 错误 - 运行异常 会话 null 上的“getLocation”命令 java.lang.NullPointerException: sessionId 不能为空;这次会议已经开始了吗? 在 org.openqa.selenium.server.FrameGroupCommandQueueSet.getQueueSet(FrameGroupCommandQueueSet.java:216) 在 org.openqa.selenium.server.commands.SeleniumCoreCommand.execute(SeleniumCoreCommand.java:34) 在 org.openqa.selenium.server.SeleniumDriverResourceHandler.doCommand(SeleniumDriverResourceHandler.java:562) 在 org.openqa.selenium.server.SeleniumDriverResourceHandler.handleCommandRequest(SeleniumDriverResourceHandler.java:370) 在 org.openqa.selenium.server.SeleniumDriverResourceHandler.handle(SeleniumDriverResourceHandler.java:129) 在 org.openqa.jetty.http.HttpContext.handle(HttpContext.java:1530) 在 org.openqa.jetty.http.HttpContext.handle(HttpContext.java:1482) 在 org.openqa.jetty.http.HttpServer.service(HttpServer.java:909) 在 org.openqa.jetty.http.HttpConnection.service(HttpConnection.java:820) 在 org.openqa.jetty.http.HttpConnection.handleNext(HttpConnection.java:986) 在 org.openqa.jetty.http.HttpConnection.handle(HttpConnection.java:837) 在 org.openqa.jetty.http.SocketListener.handleConnection(SocketListener.java:245) 在 org.openqa.jetty.util.ThreadedServer.handle(ThreadedServer.java:357) 在 org.openqa.jetty.util.ThreadPool$PoolThread.run(ThreadPool.java:534) 23:50:10.364 信息 - 得到结果:错误服务器异常:sessionId 不应为空;这次会议已经开始了吗?会话为空时
我找不到解决方案...... 请帮忙。
I'm running Selenium RC with PHP.
I run a simple login test, that completes successfully, but just before closing the browser, I get the following error:
23:50:09.969 INFO - Command request: testComplete[, ] on session
d7a1effeabc24b0b9b46ad6fdb3eebec 23:50:09.969 INFO - Killing Google
Chrome... 23:50:10.286 INFO - Got result: OK on session
d7a1effeabc24b0b9b46ad6fdb3eebec 23:50:10.349 INFO - Command request:
getLocation[, ] on session null 23:50:10.351 ERROR - Exception running
'getLocation 'command on session null java.lang.NullPointerException:
sessionId should not be null; has this session been started yet?
at org.openqa.selenium.server.FrameGroupCommandQueueSet.getQueueSet(FrameGroupCommandQueueSet.java:216)
at org.openqa.selenium.server.commands.SeleniumCoreCommand.execute(SeleniumCoreCommand.java:34)
at org.openqa.selenium.server.SeleniumDriverResourceHandler.doCommand(SeleniumDriverResourceHandler.java:562)
at org.openqa.selenium.server.SeleniumDriverResourceHandler.handleCommandRequest(SeleniumDriverResourceHandler.java:370)
at org.openqa.selenium.server.SeleniumDriverResourceHandler.handle(SeleniumDriverResourceHandler.java:129)
at org.openqa.jetty.http.HttpContext.handle(HttpContext.java:1530)
at org.openqa.jetty.http.HttpContext.handle(HttpContext.java:1482)
at org.openqa.jetty.http.HttpServer.service(HttpServer.java:909)
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:245)
at org.openqa.jetty.util.ThreadedServer.handle(ThreadedServer.java:357)
at org.openqa.jetty.util.ThreadPool$PoolThread.run(ThreadPool.java:534)
23:50:10.364 INFO - Got result: ERROR Server Exception: sessionId
should not be null; has this session been started yet? on session null
I can't find a solution...
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
问题在于
tearDown()
中的stop()
调用。删除它解决了问题。The problem was the
stop()
call withintearDown()
. Removing it fixed the problem.在
setUp()
中添加这些行有帮助:Adding these lines in the
setUp()
helped: