如何在测试失败时使用PHPUnit和Selenium2捕获屏幕截图?

时间:2015-02-03 12:18:51

标签: testing selenium phpunit phantomjs ghostdriver

我使用PHPUnit 4.6和PHPUnit Selenium 1.4.2与PhantomJS。当selenium测试失败时,我想捕获最后一页的截图。 在PHPUnit Manual中有一个Selenium 1的示例,但我尝试使用Selenium 2,因为我需要使用GhostDriver。

WebTestCase.php

class WebTestCase extends PHPUnit_Extensions_Selenium2TestCase
{
    protected $captureScreenshotOnFailure = TRUE;
    protected $screenshotPath = '/../../screenshots';
    protected $screenshotUrl = 'http://localhost:8080/screenshots';

    protected function setUp() {
        $this->setBrowser('phantomjs');
        $this->setBrowserUrl("http://localhost:8080");
        $this->setHost('localhost');
    }
}

test.php的

class Test extends WebTestCase
{

    public function testTitle()
    {
        $this->url('');
        assertEquals($this->title(), "My App");
    }
}

但这不是截图。

$ vendor/bin/phpunit 
PHPUnit 4.6-ge85198b by Sebastian Bergmann and contributors.

Configuration read from /MyApp/phpunit.xml

F

Time: 231 ms, Memory: 5.50Mb

There was 1 failure:

1) Test::testTitle
Failed asserting that two strings are equal.
--- Expected
+++ Actual
@@ @@
-''
+'My App'

/MyApp/tests/functional/Test.php:7

FAILURES!                            
Tests: 1, Assertions: 1, Failures: 1.

4 个答案:

答案 0 :(得分:6)

结合@Jens A. Koch@John Joseph的解决方案,我们得到了这个:

<?php

class homepageTest extends PHPUnit_Extensions_Selenium2TestCase {

    private $listener;

    public function setUp() {

        // Your screenshots will be saved in '/var/www/vhosts/screenshots/'
        $screenshots_dir = '/var/www/vhosts/screenshots/';

        $this->listener = new PHPUnit_Extensions_Selenium2TestCase_ScreenshotListener($screenshots_dir);

        $this->setBrowser('firefox');
        $this->setBrowserUrl('https://netbeans.org');
    }

    public function tearDown() {
        $this->stop();
    }

    public function testNetbeansContainsHorses() {
        $this->url('https://netbeans.org');
        $this->assertContains('Equestrian', $this->title()); // Will fail on NetBeans page.
    }


    public function onNotSuccessfulTest($e) {
        $this->listener->addError($this, $e, null);        
        parent::onNotSuccessfulTest($e);
    }
}

答案 1 :(得分:5)

嗯。 SeleniumTestCase和Selenium2TestCase之间的区别在PHPUnit手册中没有很好的记录。对于Selenium2,常见案例也没有明确的分离和充分的使用示例。

$ captureScreenshotOnFailure不存在 PHPUnit_Extensions_Selenium2TestCase

无论如何,让我们尝试将它们放在一起:

<?php
class Test extends PHPUnit_Extensions_Selenium2TestCase
{

    protected function setUp() {
        $this->setBrowser('phantomjs');
        $this->setBrowserUrl("http://localhost:8080");
        $this->setHost('localhost');
    }

    public function testEnterText()
    {
        $this->url("/");

        try {

            $this->assertEquals($this->title(), "My App");

        } catch (Exception $e) {

            $this->screenshot( __DIR__.'/'.$this->getName().'-'.time(). '.png');    
        }
    }

    public function screenshot($file) 
    {
        $filedata = $this->currentScreenshot();
        file_put_contents($file, $filedata);
    }
}

try-catch-block:在try部分中断言完成,如果断言失败,则捕获异常。 catch-block让我们有机会(抓住异常的详细信息或重新抛出它或者)制作屏幕截图。

主要功能是$ this-&gt; currentScreenshot(),用于此测试 https://github.com/giorgiosironi/phpunit-selenium/blob/master/Tests/Selenium2TestCaseTest.php#L733

<强> ScreenshotListener

请注意,有一个ScreenshotListener,可能值得一看: https://github.com/giorgiosironi/phpunit-selenium/blob/master/PHPUnit/Extensions/Selenium2TestCase/ScreenshotListener.php

使用示例结束于https://github.com/giorgiosironi/phpunit-selenium/blob/master/Tests/Selenium2TestCase/ScreenshotListenerTest.php

这可能是一个更清晰的实现,可以抓住测试失败并进行拍摄。

答案 2 :(得分:2)

在所有Web测试中执行此操作的方法是覆盖父测试用例类中的一个测试失败函数,并在那里捕获屏幕截图。

示例:

class MyBaseWebTests
{

    $this->directory = '/some_path_to_put_screenshots_in/';

    // Override PHPUnit_Extensions_Selenium2TestCase::onNotSuccessfulTest
    public function onNotSuccessfulTest(Exception $e)
    {
        $filedata   = $this->currentScreenshot();
        $file       = $this->directory . get_class($this) . '.png';
        file_put_contents($file, $filedata);

        parent::onNotSuccessfulTest($e);
    }
}

现在,在您的任何Web测试失败后,他们将在该文件夹中转储屏幕截图,其中Web测试类的名称为文件名。

答案 3 :(得分:0)

使用它来保存屏幕截图。在无头浏览器的情况下非常有用。

    $fp = fopen('path/35.png', 'wb');
    fwrite($fp, $this->currentScreenshot());
    fclose($fp);
    sleep(1);