{% extends "base.html" %} {% block title %} {{ type|name_by_type }} {% endblock %} {% block content %}
{% include "includes/flash.html" %} {% if type == 'testrun' %}
Please wait
Launching Testrun
Loading...
Loading...
{% endif %}
{% if type == 'testrun' %}
{% endif %}
Name
Description
{% if type == 'teststep' %}
Activity Type
{% else %}
Created
{% endif %}
{% for item in items %}
{{ item.description }}
{% if type == 'teststep' %}
{{ item.activity_type }}
{% else %}
{{ item.created|time }}
{% endif %}
ID: {{ item.uuid }}
Created {{ item.created|time }} by {{ item.creator }}
{% if item.edited %}
Last edidted {{ item.edited|time }} by {{ item.editor }}
{% endif %}
    {% if type == 'testrun' %}
  • {{ 'testcase_sequence'|name_by_type }}
  • {% if item.testcase_sequences %} {% for sequence in item.testcase_sequences %}
  • {{ sequence }}
  • {% endfor %} {% else %}
  • No Test Case Sequence Defined
  • {% endif %} {% if item.calls %}
  • Runs
  • {% for call in item.calls %}
  • {{ call.created|time }}
    {{ call.creator }}
    {% if call.is_finished %} {% elif call.is_failed %} {% else %} {% endif %}
  • {% endfor %} {% endif %} {% endif %} {% if type == 'testcase_sequence' or type == 'testcase' or type == 'teststep_sequence' %}
  • Class Name
  • {{ item.classname }}
  • {% endif %} {% if type == 'testcase_sequence' %}
  • Data Files
  • {% if item.datafiles %} {% for datafile in item.datafiles %}
  • {{ datafile }}
    {{ datafile.created|time }}
    Download
  • {% endfor %} {% else %}
  • No Data File Defined
  • {% endif %}
  • {{ 'testcase'|name_by_type }}
  • {% if item.testcases %} {% for testcase in item.testcases %}
  • {{ testcase }}
  • {% endfor %} {% else %}
  • No Test Case Defined
  • {% endif %} {% endif %} {% if type == 'testcase' %}
  • Browser Type
  • {{ item.browser_type }}
  • Test Case Type
  • {{ item.testcase_type }}
  • {{ 'teststep_sequence'|name_by_type }}
  • {% if item.teststep_sequences %} {% for sequence in item.teststep_sequences %}
  • {{ sequence }}
  • {% endfor %} {% else %}
  • No Test Case Step Sequence Defined
  • {% endif %} {% endif %} {% if type == 'teststep_sequence' %}
  • {{ 'teststep'|name_by_type }}
  • {% if item.teststeps %} {% for step in item.teststeps %}
  • {{ step }}
  • {% endfor %} {% else %}
  • No Test Step Defined
  • {% endif %} {% endif %} {% if type == 'teststep' %}
  • Parameters
  • Value
    Comparison
    Value 2
    {{ item.value }}
    {{ item.comparison }}
    {{ item.value2 }}
    Locator Type
    {{ item.locator_type }}
    Locator
    {% if item.locator %}{{ item.locator }}{% endif %}
    Optional
    {{ item.optional }}
    Timeout
    {% if item.timeout %}{{ item.timeout }}{% endif %}
    Release
    {% if item.release %}{{ item.release }}{% endif %}
  • {% endif %}

Edit {% if type == 'testrun' %} {% endif %}

{% endfor %} {% if type == 'testrun' %} {% endif %} {% if type == 'testcase_sequence' %} {% endif %}
{% endblock %}