• {% if scenarioLog.status == "SUCCESS" %} {% else %} {% endif %} Scenario {{ scenarioLog.scenarioName }}



    General Information

    Scenario ID {{ scenarioLog.scenarioId }}
    Description {{ scenarioLog.description }}
    Start {{ scenarioLog.start }}
    End {{ scenarioLog.end }}
    Duration {{ scenarioLog.duration / 1000.0 }} s

    {% if scenarioLog.groupDependencies | length > 0 or scenarioLog.methodDependencies | length > 0 %}
    Dependencies

    {% if scenarioLog.groupDependencies | length > 0 %} {% endif %} {% if scenarioLog.methodDependencies | length > 0 %} {% endif %}
    Group Dependencies
      {% for groupDependency in scenarioLog.groupDependencies %}
    • {{ groupDependency }}
    • {% endfor %}
    Method Dependencies
      {% for methodDependency in scenarioLog.methodDependencies %}
    • {{ methodDependency }}
    • {% endfor %}
    {% endif %} {% if scenarioLog.testParameters | length > 0 %}
    Parameters

    {% for param in scenarioLog.testParameters %} {% endfor %}
    Name Type Value
    {{ param.name }} {{ param.type }} {{ param.value }}
    {% endif %}

    Steps



      {% for stepLog in scenarioLog.logMessages %} {% include 'de/qytera/qtaf/htmlreport/templates/step.inc.html' %} {% endfor %}