2
當我運行,即使進行了抽樣檢測,無論是在Netbeans的命令行的IDE,比如:PHPUnit的Selenium2 - 沒有瀏覽器實例
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和硒的服務器獨立-2.21.0
任何人任何想法?
原來,如果你用sudo運行PHPUnit,它就可以工作!衛生署! – dmag