> ## Documentation Index
> Fetch the complete documentation index at: https://documents.tmsone.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Execution History

The **Execution History** page is a unified view of all past test runs across every execution type in your project — manual, automation, and API. Use it to review results, download reports, and track testing progress over time.

***

## Navigating the page

From the left sidebar click **Execution History** under your project. The page has four tabs:

| Tab            | Shows                                      |
| -------------- | ------------------------------------------ |
| **All**        | Every test run across all types            |
| **Manual**     | Results from manual test execution         |
| **Automation** | Results from Playwright automation scripts |
| **API**        | Results from API Runner executions         |

You can also filter by **date range**, **trigger source**, and **search** by run title. Click **Reset Filters** to clear all active filters.

***

## Manual tab

Shows completed runs from [manual test execution](/qa/running-tests).

### Columns

| Column         | Description                     |
| -------------- | ------------------------------- |
| Run ID         | Unique identifier for the run   |
| Reference ID   | Reference identifier            |
| Run Title      | Name of the test suite executed |
| Execution Type | Manual                          |
| Trigger Source | How the run was triggered       |
| Total          | Total test cases in the run     |
| Passed         | Number of tests that passed     |
| Failed         | Number of tests that failed     |
| Skipped        | Number of skipped tests         |
| Blocked        | Number of blocked tests         |
| Not Run        | Tests included but not executed |
| Date Completed | When the run finished           |
| Actions        | View details, Delete            |

### Viewing a manual run in detail

Click the **view icon** on any run to open the full results breakdown. The detail view shows:

* **Summary header** — run ID, project, suite name, executed by, date and time
* **Status summary** — colour-coded counts for Pass, Fail, Skipped, Blocked, Not Run
* **Test case list** — left panel with all test cases and their outcome status
* **Test case detail** — click any test case to see:
  * Title and identifier
  * Outcome status
  * Full execution history (sorted newest first)
  * Comments added during execution
  * Attachments (screenshots/recordings) captured as evidence

***

## Automation tab

Shows completed runs from [Test Builder](/qa/test-builder) Playwright scripts.

### Columns

| Column           | Description                         |
| ---------------- | ----------------------------------- |
| Run ID           | Unique identifier for the execution |
| Run Title        | Name(s) of the scripts executed     |
| Date Completed   | When the run finished               |
| Total Test Cases | Total tests run                     |
| Passed           | Tests that passed                   |
| Failed           | Tests that failed                   |
| Skipped          | Tests that were skipped             |
| Actions          | Download HTML report, Delete        |

### Downloading the HTML report

Click the **download icon** on any automation run to open the full Playwright HTML report. This includes:

* Test execution timeline
* Pass/fail status per test
* Screenshots and videos captured during the run
* Error logs and stack traces for failures

<Tip>
  The HTML report is the most detailed view of an automation run. Share it with your team to communicate test results clearly.
</Tip>

***

## API tab

Shows completed runs from the **API Runner** — executions of API request collections.

### Columns

| Column           | Description                       |
| ---------------- | --------------------------------- |
| Run ID           | Unique identifier for the API run |
| Date Completed   | When the run finished             |
| Total Test Cases | Number of API requests executed   |
| Passed           | Requests that passed              |
| Failed           | Requests that failed              |
| Skipped          | Requests that were skipped        |
| Actions          | View details, Delete              |

***

## Deleting a run

Click the **delete icon** on any run across any tab. You'll be asked to confirm before deletion.

<Warning>
  Deleting a test run permanently removes all associated results, comments, and attachments. This cannot be undone.
</Warning>

***

## What's next?

<CardGroup cols={3}>
  <Card title="Running Tests" icon="play" href="/qa/running-tests">
    Start a new manual test run
  </Card>

  <Card title="Test Builder" icon="code" href="/qa/test-builder">
    Generate and run automation scripts
  </Card>

  <Card title="Defect Management" icon="bug" href="/qa/defect-management">
    Track defects logged from failed tests
  </Card>
</CardGroup>
