{% extends "layout.html" %} {% block head_declarations %}

Test: {{test_case_data.name|replace("_", " ")}}

Details

Description
{{test_case_data.description}}
{% if test_case_data.module %}
Module
{{test_case_data.module}}
{% endif %}
Result
{{test_case_data.result}}
{% if test_case_data.url %}
URL
{{test_case_data.url}}
{% endif %}
Browser
{{test_case_data.browser}}
{% if test_case_data.environment %}
Environment
{{test_case_data.environment}}
{% endif %}
Start Time
{{test_case_data.start_date_time}}
Elapsed Time
{{test_case_data.test_elapsed_time}} seconds
{% if test_case_data.short_error %}
Error
{{test_case_data.short_error}}
{% endif %}
Test Data
{{test_case_data.data}}

Steps

{% for step in test_case_data.steps %}
{{loop.index}}. {{step.message}} {% if step.error %} - {{step.error.message}} {% endif %} {% if step.screenshot %}
{% endif %}
{% endfor %}

Log DEBUG INFO

{% for line in test_case_data.info_log %}
{{line}}
{% endfor %}
{% endblock %} {% block footer_declarations %} {% endblock %}