Features


{% for feature in features %}

Feature: {{ feature.name }}

{% for scenario in feature.scenarios %}

Scenario: {{ scenario.name }}

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