Dashboard

Test Status:
{{test_stats['Total']}} {{test_stats['Pass']}}
Total Pass
{{test_stats['Fail']}} {{test_stats['Skip']}}
Fail Skip
Suite Status:
Keyword Status:
Execution Duration (m):
Type Min Max Avg
Suite {{(suite_stats['Min']/60000)|round(2)}} {{(suite_stats['Max']/60000)|round(2)}} {{(suite_stats['Avg']/60000)|round(2)}}
Test {{(test_stats['Min']/60000)|round(2)}} {{(test_stats['Max']/60000)|round(2)}} {{(test_stats['Avg']/60000)|round(2)}}
Execution Info:
Action Time
Start Time {{ execution_stats[0] }}
End Time {{ execution_stats[1] }}
Duration {{ execution_stats[2] }}
Top 10 Failed Suites:
Test Count By Elapsed Time:

Suite Metrics

{% for suite in suites %} {% if (suite['Status'] == "PASS") %} {% elif (suite['Status'] == "FAIL") %} {% else %} {% endif %} {% endfor %}
Name Status Total Pass Fail Skip Time (s)
{{ suite['Name'] }}{{ suite['Status'] }}{{ suite['Status'] }}{{ suite['Status'] }}{{ suite['Total'] }} {{ suite['Pass'] }} {{ suite['Fail'] }} {{ suite['Skip'] }} {{ (suite['Time']/1000)|round(2) }}

Test Metrics

{% for test in tests %} {% if (test['Status'] == "PASS") %} {% elif (test['Status'] == "FAIL") %} {% else %} {% endif %} {% endfor %}
Suite Name Test Name Status Time (s) Message Tags
{{ test['Suite Name'] }} {{ test['Test Name'] }}{{ test['Status'] }}{{ test['Status'] }}{{ test['Status'] }}{{ (test['Time']/1000)|round(2) }} {{ test['Message'] }} {{ test['Tags'] }}

KW Times Metrics

{% if not keyword_times.empty %} {% for key, value in keyword_times.iterrows() %} {% endfor %} {% endif %}
Keyword Name Times Fail Count Min Duration(s) Max Duration(s) Average Duration(s)
{{ value['Name'] }} {{ value['times'] }} {{ value['fail_count'] }} {{ (value['time_min']/1000)|round(2) }} {{ (value['time_max']/1000)|round(2) }} {{ (value['time_mean']/1000)|round(2) }}

Details

{% for suite in suites_list %} {% if suite['tests'] %}
{{ suite["suite_name"] }}
{% endif %} {% endfor %}
{% for suite in suites_list %} {% if suite['tests'] %} {% endif %} {% endfor %}