以编程方式运行PHPUnit Selenium测试用例(“在PHP内”)

前端之家收集整理的这篇文章主要介绍了以编程方式运行PHPUnit Selenium测试用例(“在PHP内”)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在“ PHP内”运行测试而不是使用’PHPunit’命令?例:
<?PHP
require_once 'PHPUnit/Extensions/SeleniumTestCase.PHP';
class MySeleniumTest extends PHPUnit_Extensions_SeleniumTestCase {

    protected function setUp() {
        $this->setBrowser("*firefox");
        $this->setBrowserUrl("http://example.com/");
    }

    public function testMyTestCase() {
        $this->open("/");
        $this->click("//a[@href='/contact/']");
    }

}

$test = new MySeleniumTest();
//I want to run the test and get information about the results so I can store them in the database,send an email etc.
?>

或者我是否必须将测试写入文件,通过system()/ exec()调用PHPunit并解析输出 原文链接:https://www.f2er.com/php/137480.html

猜你在找的PHP相关文章