我已经为
PHP编写了Selenium Test案例.我想在执行这些测试用例时获取代码覆盖.我的测试用例:
原文链接:https://www.f2er.com/php/139429.html<?PHP class Example extends PHPUnit_Extensions_SeleniumTestCase { protected $coverageScriptUrl = 'http://applicationname/PHPunit_coverage.PHP'; protected function setUp() { $this->setBrowser("*firefox"); $this->setBrowserUrl("http://applicationname"); $this->setCollectCodeCoverageInformation(true); $this->setTestId("10001"); $this->setHost("applicationname"); } public function testMyTestCase() { $this->open("http://applicationame"); $this->assertEquals("title",$this->getTitle()); $this->type("id=ext-comp-1002","testuser"); $this->fireEvent("id=ext-comp-1002","blur"); $this->type("id=ext-comp-1003","testpassword"); $this->fireEvent("id=ext-comp-1003","blur"); $this->click("ext-gen45"); $this->waitForPageToLoad("200000"); } } ?>
我已经遵循链接“http://www.PHPunit.de/manual/current/en/selenium.html”中提到的步骤
运行测试后,我无法找到代码覆盖.在PHPunit_coverage.PHP中,它的名字是PHPUNIT_SELENIUM_TEST_ID.这个cookie是在Driver.PHP中创建的,我看到cookie是可用的,但是它的主机名设置为“localhost”,而不是我的应用程序名称.
Cookie生命周期设置为会话,即在测试用例执行后立即表示此cookie将不再可用,并且当我尝试启动PHPunit_coverage.PHP时,它无法找到cookie和信息,因此不会显示代码覆盖.
我不明白的事情
> protected $coverageScriptUrl =’http://applicationname/PHPunit_coverage.PHP’;
>如果cookie具有不同的主机,除了应用程序可以访问此cookie
我已经看到这个问题在许多论坛上被讨论,但有一个具体答案
许多论坛建议使用localhost而不是127.0.0.1作为服务器名称.在我的情况下,它已经是localhost.
在这方面的任何建议将是有帮助的.
谢谢,
Ravuri