Details
Description
{{test_case_data.description}}
{% if test_case_data.module %}
Module
{{test_case_data.module}}
{% endif %}
{% if test_case_data.sub_modules %}
Submodules
{% for sub in test_case_data.sub_modules %}
{{sub}}
{% endfor %}
{% endif %}
Result
{{test_case_data.result}}
{%if test_case_data.result == 'pass' %}
{%else%}
{% endif %}
{% if test_case_data.url %}
URL
{{test_case_data.url}}
{% endif %}
Browser
{{test_case_data.browser}}
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 %}
Steps
{% for step in test_case_data.steps %}
{{loop.index}}.
{% if step.screenshot %}
{{step.message}}
{% else %}
{{step.message}}
{% endif %}
{% endfor %}
Log
{% for line in test_case_data.log %}
{{line}}
{% endfor %}