{% extends "base.html" %} {% block content %}
Clear all filters
Show filter syntax guide
Total: {{ requests|length }} Showing: {{ requests|length }}
Reload all requests from server
Pause/resume live request streaming
Download visible requests as JSON
{% if requests %}
{% for req in requests %} {% endfor %}
Time Method Path Size
{{ req.timestamp | timestamp_format if req.timestamp }} {{ req.method }}
{{ req.path }} {% if req.query_string %} ?{{ req.query_string }} {% endif %} {% if req.session_token %} session: {{ req.session_token }} {% endif %}
{{ req.content_length }} bytes
{% else %}

No requests received yet

Requests will appear here as the test agent receives them

{% endif %}
{% endblock %}