alom / journal-extension
Behat extension adding screenshots to HTML reports
Installs: 102 422
Dependents: 1
Suggesters: 0
Security: 0
Stars: 6
Watchers: 3
Forks: 7
Open Issues: 1
Type:behat-extension
Requires
- php: >=5.3.2
- behat/behat: *
This package is auto-updated.
Last update: 2024-10-27 21:09:25 UTC
README
This extension provides a HTML format for Behat with screenshots.
Installation
Add it to your composer.json
:
{ "require": { "alom/journal-extension": "dev-master" } }
Configure behat.yml
:
default: extensions: Behat\JournalExtension\Extension: driver: mink # available: mink, webdriver capture_all: true # defaults to false to only capture on failure
Launch your test suite with format journal:
$ bin/behat -f journal --out journal.html [feature, ...]
This command will produce a file journal.html
containing the HTML standard
output with additional screenshots.
Screenshot files will be placed in the same folder as the main output file. Any old screenshots are removed from the output folder first.
To get another progress on screen while journal report is being generated, use behat.yml:
formatter: name: journal,pretty parameters: output_path: wwwdocs/features/index.html,null
To work, you have to use proper extension for it. Supported are:
- PHP WebDriver
- Mink (with SeleniumDriver or Selenium2Driver)