Result
{{test.result}}
Browser
{{test.browser}}
{% if test_data.environment %}
Environment
{{test.environment}}
{% endif %}
Elapsed Time
{{test.elapsed_time}} seconds
{% if test_data.short_error %}
Error
{{test.short_error}}
{% endif %}
Test Data
{{test.data}}
Steps
{% for step in test.steps %}
{{loop.index}}.
{{step.message}}
{% if step.error %}
- {{step.error.message}}
{% endif %}
{% if step.screenshot %}
{% endif %}
{% endfor %}