{% extends 'de/qytera/qtaf/htmlreport/templates/base.html' %}
{% block body %}
Test report - {{ testSuiteLog.start }}
General Information
| Driver |
{{ testSuiteLog.driverName }} |
| Start |
{{ testSuiteLog.start }} |
| End |
{{ testSuiteLog.end }} |
| Duration |
{{ testSuiteLog.duration / 1000.0 }} s |
Test Suite
| Suite name |
{{ testSuiteLog.suiteInfo.name }} |
| Output directory |
{{ testSuiteLog.suiteInfo.outputDir }} |
Tags
{% for tag in testSuiteLog.tags %}
| {{ tag.key }} |
{{ tag.value }} |
{% endfor %}
Features
{% for featureLog in testFeatureLogCollections %}
{% include 'de/qytera/qtaf/htmlreport/templates/feature.html' %}
{% endfor %}
{% endblock %}