Download the PHP package khalidumar/behatformatter without Composer
On this page you can find all versions of the php package khalidumar/behatformatter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download khalidumar/behatformatter
More information about khalidumar/behatformatter
Files in khalidumar/behatformatter
Package behatformatter
Short Description This will create a formatter for Behat 3! Fast, Easy and Pretty! & Added support for php 7.2+
License MIT
Informations about the package behatformatter
BehatFormatter
Behat 3 extension for generating AWESOME reports from your test results.
Twig report
Live demo available at: http://www.bug-hunter.nl/testreport/index.html (daily generated)
Features
- Create screenshot on failed steps.
- Create screenshot on result steps (Then).
- Save source code in html on failed steps (easy debugging).
- Possibility to set project title, description and logo in the testreport.
- Print report button
- Filter on successful or failed scenario's
It's easy!!
- This tool can be installed easily with composer.
- Defining the formatter in the
behat.yml
file - Modifying the settings in the
behat.yml
file - Optional: Update
FeatureContext.php
to generate screenshots.
Installation
Prerequisites
This extension requires:
- PHP 5.3.x or higher
- Behat 3.x or higher
Through composer
The easiest way to keep your suite updated is to use Composer:
Install with composer:
Install using composer.json
Add BehatFormatter to the list of dependencies inside your composer.json
.
Then simply install it with composer:
You can read more about Composer on its official webpage.
Basic usage
Activate the extension by specifying its class in your behat.yml
:
Configuration
output_path
- The location where Behat will save the HTML reports. The path defined here is relative to%paths.base%
and, when omitted, will be default set to the same path.renderer
- The engine that Behat will use for rendering, thus the types of report format Behat should output (multiple report formats are allowed, separate them by commas). Allowed values are:- Behat2 for generating HTML reports like they were generated in Behat 2.
- Twig A new and more modern format based on Twig.
- Minimal An ultra minimal HTML output.
file_name
- (Optional) Behat will use a fixed filename and overwrite the same file after each build. By default, Behat will create a new HTML file using a random name ("renderer name"_"date hour").projectName
- (Optional) Give your report a page titel.projectDescription
- (Optional) Include a project description on your testreport.projectImage
- (Optional) Include a project image in your testreport.print_args
- (Optional) If set totrue
, Behat will add all arguments for each step to the report. (E.g. Tables).print_outp
- (Optional) If set totrue
, Behat will add the output of each step to the report. (E.g. Exceptions).loop_break
- (Optional) If set totrue
, Behat will add a separating break line after each execution when printing Scenario Outlines.show_tags
- (Optional) If set totrue
, Behat will add tags when printing Scenario's and features.
Screenshots
To generate screenshots in your testreport you have to change your FeatureContext.php
:
From:
To:
Extra function: Placeholders
It is possible to use placeholders in feature steps. Add a BeforeStep, BeforeScenario or BeforeSuite action to your context file containing a setTransformValues() action. You can add custom placeholders by using an array.
example context rules:
Example feature:
Example Output:
Todo:
- save html on failures
- save REST responses in testreport
- JSON output - if wanted?
- colors in print stylesheet
- custom footer image/text
License and Authors
Authors: https://github.com/ElkanRoelen/BehatFormatter/graphs/contributors
All versions of behatformatter with dependencies
twig/twig Version ~1.0
behat/behat Version ~3.0
behat/mink Version ^1.7
behat/mink-extension Version *
behat/mink-selenium2-driver Version ^1.3