2

当我甚至在命令行中的 Netbeans IDE 中运行示例测试时,例如:

class WebTest extends PHPUnit_Extensions_Selenium2TestCase
{
protected function setUp()
{
    $this->setBrowser('firefox');
    $this->setBrowserUrl('http://www.example.com/');
}

public function testTitle()
{
    $this->url('http://www.example.com/');
    $this->assertEquals('Example WWW Page', $this->title());
}

}

我得到了 PHPUnit 响应,但它似乎没有与 Selenium 服务器通信,因为没有创建浏览器窗口。

PHPUnit 3.6.10 by Sebastian Bergmann.

Configuration read from /var/www/gcd/framework/yii/gadget/protected/tests/phpunit.xml

F

Time: 1 second, Memory: 10.50Mb

There was 1 failure:

1) WebTest::testTitle
Failed asserting that null matches expected 'Example WWW Page'.

使用 PHPUnit 3.6.10 和 selenium-server-standalone-2.21.0

有人有什么想法吗?

4

1 回答 1

2

事实证明,如果你用 sudo 运行 PHPUnit,它就可以工作!嗬!

于 2012-05-24T11:02:03.697 回答