Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Dustin4444/9c754d8e973f186ad84f27d68cdd9f1d to your computer and use it in GitHub Desktop.

Select an option

Save Dustin4444/9c754d8e973f186ad84f27d68cdd9f1d to your computer and use it in GitHub Desktop.
Take screenshot with Behat/Mink after failed step
/**
* 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));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment