{% if not steps %}

I am sorry, this log file is empty!

{% endif %}

Test Case {{info.name}} {% if test_result %} {% else %} {% endif %}

{% if info.author %}

Author: {{info.author}}

{% else %}

Author: Anonymous

{% endif %} {% if info.title %}

Title: {{info.title}}

{% endif %} {% if info.desc %}

Description:

{{ info.desc| nl2br }}
{% endif %}

Time:{{run_start}} -- {{run_end}}

{% if not test_result %}

Failure: Failed Steps

{% for step in steps %} {% if step.traceback %} {{loop.index}} {% endif %} {% endfor %}
{% endif %}

Assert: Test Steps Summary


{% for step in steps %} {% if step.assert %}
Test step {% if step.traceback %} {{loop.index}} {% else %} {{loop.index}} {% endif %} Expected result:{{step.assert}}
{% endif %} {% endfor %}
{% if records %} {% for r in records %}
{% endfor %} {% else %}

No record information found.

{% endif %}
{% for step in steps %}

Step {{loop.index}} {{step.title}} [{{step.time}}]


{% if step.code.name %}
{% for arg in step.code.args %} {% if arg.image %}

resolution: {{arg.value.resolution}}

{% else %}

{{arg.key}}: {{arg.value}}

{% endif %} {% endfor %}
{% endif %} {% if step.screen.src %}
{% if step.screen.pos %} {% for pos in step.screen.pos %} {% endfor %} {% endif %} {% if step.screen.vector %} {% for vector in step.screen.vector %} {% set pos=step.screen.pos[loop.index-1]%}
{% endfor %} {% endif %} {% if step.screen.rect %} {% for rect in step.screen.rect %}
{% endfor %} {% endif %}

{% if step.screen.confidence %}

Matching confidence: {{step.screen.confidence}}

{% endif %} {% endif %} {% if step.desc %}

{{step.desc}}

{% endif %} {% if not step.traceback %}
Execution succeeded
{% else %}
Execution failed
{{step.traceback}}
{% endif %}
{% endfor %}
{% block footer %} {% endblock %}