Scenario
Before or After Hooks that declare a parameter of this type will receive an instance of this class. It allows writing text and embedding media into reports, as well as inspecting results (in an After block).
Before or After Hooks that declare a parameter of this type will receive an instance of this class. It allows writing text and embedding media into reports, as well as inspecting results (in an After block).
Note: This class is not intended to be used to create reports. To create custom reports use
the io.cucumber.plugin.Plugin
class. The plugin system provides a much richer access to Cucumbers then
hooks after could provide. For an example see io.cucumber.core.plugin.PrettyFormatter
.
Value members
Concrete methods
Attach data to the report(s).
Attach data to the report(s).
// Attach a screenshot. See your UI automation tool's docs for
// details about how to take a screenshot.
scenario.attach(pngBytes, "image/png", "Bartholomew and the Bytes of the Oobleck");
To ensure reporting tools can understand what the data is a
mediaType
must be provided. For example: text/plain
,
image/png
, text/html;charset=utf-8
.
Media types are defined in RFC 7231 Section 3.1.1.1.
- Value Params
- data
what to attach, for example an image.
- mediaType
what is the data?
- name
attachment name
Attaches some text based data to the report.
Attaches some text based data to the report.
- Value Params
- data
what to attach, for example html.
- mediaType
what is the data?
- name
attachment name
- See also
#attach(byte[], String, String)
- Returns
the line in the feature file of the Scenario. If this is a Scenario from Scenario Outlines this will return the line of the example row in the Scenario Outline.
Returns the current status of this test case.
Returns the current status of this test case.
The test case status is calculate as the most severe status of the executed steps in the testcase so far.
- Returns
the current status of this test case