> ## 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.

# Ui test runs

# UI Test Runs (Automation Results)

The **UI Test Runs** page shows the execution history and results of automation scripts that were generated in the [Test Builder](/qa/test-builder) and run via the Playwright service.

***

## Viewing execution history

Navigate to **UI Test Runs** from the left sidebar. You'll see a table of all past automation test executions for your project.

### Results table

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

You can **search** by run title and adjust **pagination** (10, 20, 25, or 50 results per page).

***

## Downloading the HTML report

Each completed run has a **Download** button. Clicking it opens a full Playwright HTML report that includes:

* Detailed test execution timeline
* Pass/fail status per test
* Screenshots and videos (if captured during the run)
* Error logs and stack traces for failures
* Performance metrics

<Tip>
  The HTML report is the most detailed view of what happened during an automated run. Use it to diagnose failures and share results with your team.
</Tip>

***

## Deleting a run

Click the **Delete** icon on any run to remove it. You'll be asked to confirm before deletion. This action cannot be undone.

***

## How UI Test Runs relate to Test Builder

|                 | Test Builder                           | UI Test Runs                           |
| --------------- | -------------------------------------- | -------------------------------------- |
| **Purpose**     | Generate and manage automation scripts | View execution results                 |
| **User action** | Create, edit, execute scripts          | View reports, download results         |
| **When to use** | When setting up or updating automation | After running scripts to check results |

***

## What's next?

<CardGroup cols={2}>
  <Card title="Test Builder" icon="code" href="/qa/test-builder">
    Generate and manage automation scripts
  </Card>

  <Card title="Manual Test Run Results" icon="list" href="/qa/test-run-results">
    View results from manual test execution
  </Card>
</CardGroup>
