{% extends "layout.html" %} {% block nav %} {% endblock %} {% block content %}
|
Feature: {{ escape(feature['name']) }} {% if feature['tags'] %} {{ feature['tags'] }} {% endif %} Scenario: {{ escape(scenario['name']) }} {{ scenario['tags'] }} {% if scenario['sub_headers'] %} {{ scenario['sub_headers'] }} {% endif %} |
Start Time and Duration (s) |
| 🔗 <{{ step['heading_level'] }} style="display: contents;" title="{{ escape(step['name']) }}"> {{ escape(step['name']) }}{{ step['heading_level'] }}> | |
🔗
{{ step_keyword }} {{ escape(step['name']) }}
|
{{ step_timing }} |
{% if step['text'] %}
{{ escape(step_text_list_to_html(step['text'])) }}
{% endif %}
{% if step['table_data'] %}
{{ escape(step_table_to_html(step['table_data'])) }}
{% endif %}
| |
{% if step['stdout'] %}
stdout ({{ step['stdout']|length }} lines){{ escape("\n".join(step['stdout'])) }}
stderr ({{ step['stderr']|length }} lines){{ escape("\n".join(step['stderr'])) }}
images ({{ step['screenshots']|length }} images)
{% for image in step['screenshots'] %}
error message ({{ step['error_message']|length }} lines){% for entry in step['error_message'] %}{{ entry }}
browser logs ({{ step['browser_logs']|length }} entries){% for entry in step['browser_logs'] %}{{ browser_timestamp_to_datetime(entry['timestamp']) }} {{ entry['level'] }} {{ entry['source']}}: {{ entry['message'] }}
debug output ({{ step['debug_output']|length }} lines){{ escape("\n".join(step['debug_output'])) }}
| |