-
-
Save michalochman/3175175 to your computer and use it in GitHub Desktop.
/** | |
* Take screenshot when step fails. | |
* Works only with Selenium2Driver. | |
* | |
* @AfterStep | |
*/ | |
public function takeScreenshotAfterFailedStep($event) | |
{ | |
if (4 === $event->getResult()) { | |
$driver = $this->getSession()->getDriver(); | |
if (!($driver instanceof Selenium2Driver)) { | |
//throw new UnsupportedDriverActionException('Taking screenshots is not supported by %s, use Selenium2Driver instead.', $driver); | |
return; | |
} | |
$screenshot = $driver->wdSession->screenshot(); | |
file_put_contents('/tmp/test.png', base64_decode($screenshot)); | |
} | |
} |
This is also automatically supported by our behat 3.x extension, amongst other useful features.
https://github.com/devinci-code/devinci-behat-extension
There is a dedicated Behat extension (bex/behat-screenshot) for taking screenshots, which can be installed via Composer easily.
It can upload the created image to public image hosting sites and display the URL to it on the console. If you need to upload images to a private server, you can create an image adapter for that easily.
Screenshot taking mode allows to make a combined image of previous steps, which can come handy if one of the previous step is responsible for the failing test case.
If you interested, have a look here:
https://github.com/elvetemedve/behat-screenshot
Another dedicated extension with support for Mink (Goutte) and Selenium screenshots
https://github.com/integratedexperts/behat-screenshot
Another extension that gives more than just a screenshot with minimal setup! https://github.com/forceedge01/behat-fail-aid
working with behat 3.0:
Note, error code is changed to
99
and thegetScreenshot
method now returns a binary file, rather than a base64 encoded string.