我在PHP中进行了以下Selenium测试:
<?php
require_once('PHPUnit/Extensions/SeleniumTestCase.php');
class Example extends PHPUnit_Extensions_SeleniumTestCase
{
protected function setUp()
{
$this->setBrowser("*chrome");
$this->setBrowserUrl("http://change-this-to-the-site-you-are-testing/");
}
public function testMyTestCase()
{
$this->open("/frontend_dev.php");
try {
$this->assertTrue($this->isTextPresent("Local Coupons"));
} catch (PHPUnit_Framework_AssertionFailedError $e) {
array_push($this->verificationErrors, $e->toString());
}
}
}
当我尝试运行它(通过运行“php filename.php”)时,我收到错误:
PHP Fatal error: Class 'PHPUnit_Framework_TestCase' not found in /usr/share/php/PHPUnit/Extensions/SeleniumTestCase.php on line 60
哪个有意义,因为这个类没有在任何地方定义,但为什么不呢?我安装了PHPUnit。 PHPUnit中不包含名为PHPUnit_Framework_TestCase的类似乎有点奇怪。有什么想法吗?
答案 0 :(得分:3)
对于命令行测试运行器,您应该read the docs用于PHPUnit。您也可以从命令行运行'phpunit --help'。我相信你会发现你需要运行类似
的东西phpunit path/to/filename.php