Features
{% for feature in features %}
Feature: {{ feature.name }}
{% for scenario in feature.scenarios %}
Scenario: {{ scenario.name }}
Step
Status
Screenshot
Duration
{% for step in scenario.steps %}
{{ step.name }}
{{ step.status.name }}
{% if step.status.name == 'failed' %}
{{ step.screenshot }}
{% endif %}
{{ step.duration|round(5) }}
{% endfor %}
{% endfor %}
{% endfor %}