1

尝试在测试用例的 setUp 方法中启动一些 selenium 调用,我收到如下错误:

Invalid response while accessing the Selenium Server at 'http://localhost:4444/selenium-server/driver/': ERROR Server Exception: sessionId should not be null; has this session been started yet?

看起来 phpunit 在 setUp 方法中没有提供 selenium sessionId (但奇怪的是,在同一个 setUp 中对 open() 方法的调用正在工作)。有什么方法可以说服 phpunit 提供该变量?

使用 phpunit 3.7.24 和 selenium 2.35.0

4

1 回答 1

0

尝试添加 $this->start(); 在你的硒调用之前

于 2013-11-21T18:32:00.203 回答