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

# Playwright Test Explorer in TestDino

> Find failing, flaky, or slow tests across your entire project.

export const VideoSchema = ({name, description, thumbnailUrl, uploadDate, duration, contentUrl, embedUrl}) => {
  const schema = {
    "@context": "https://schema.org",
    "@type": "VideoObject",
    name,
    description,
    thumbnailUrl,
    uploadDate,
    ...duration ? {
      duration
    } : {},
    ...contentUrl ? {
      contentUrl
    } : {},
    ...embedUrl ? {
      embedUrl
    } : {},
    publisher: {
      "@type": "Organization",
      name: "TestDino",
      logo: {
        "@type": "ImageObject",
        url: "https://docs.testdino.com/logo/light.svg"
      }
    }
  };
  return <script type="application/ld+json" dangerouslySetInnerHTML={{
    __html: JSON.stringify(schema)
  }} />;
};

<VideoSchema name="TestDino Playwright Test Explorer" description="Find failing, flaky, or slow Playwright tests across an entire project using TestDino's Test Explorer." thumbnailUrl="https://i.ytimg.com/vi/ed6jB-hXBCQ/maxresdefault.jpg" uploadDate="2026-02-10T00:00:00+00:00" contentUrl="https://www.youtube.com/watch?v=ed6jB-hXBCQ" embedUrl="https://www.youtube.com/embed/ed6jB-hXBCQ" />

Test Explorer provides a centralized view of every test case within a project. Each row is a test case with its metrics rolled up across runs. Analyze test health, track failure patterns, and identify flaky or slow tests across your entire test suite.

<iframe className="w-full rounded-lg h-[500px]" src="https://www.youtube.com/embed/ed6jB-hXBCQ" title="Test Explorer video" frameBorder="0" allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share; embedding" referrerPolicy="strict-origin-when-cross-origin" allowFullScreen />

## Columns

Test Explorer lists every test case in a single table. Each row shows the test title and its metrics across the selected time period and filters. Click a column header to sort.

| Column       | Description                                                  |
| :----------- | :----------------------------------------------------------- |
| Test Case    | Test title with its parent spec file                         |
| Last Status  | Status of the most recent execution (Passed, Failed, Flaky)  |
| Last Run     | Timestamp of the last execution and the branch it ran on     |
| Reliability  | Reliability score from 0 to 100. Higher is better.           |
| Flaky %      | Percent of executions with at least one flaky result         |
| Failure %    | Percent of executions with at least one failure              |
| Runs         | Total executions within the selected time period and filters |
| Avg Duration | Average execution time across all runs                       |
| Platform     | Browser or platform used (e.g., chromium, firefox, ios)      |

## Filters & Search

### Search

Filter by spec file name or test case title using the search bar. Search supports regex for advanced pattern matching.

### Filters

| Filter      | Description                                                                                                                      |
| :---------- | :------------------------------------------------------------------------------------------------------------------------------- |
| Time Period | Scope data to the last 7, 30, or 90 days                                                                                         |
| Tags        | Filter by test case tags. Add the Tag breakdown widget in [Analytics](/platform/playwright-test-analytics) for tag health trends |
| Platforms   | Filter by browser or platform (e.g., chromium, firefox)                                                                          |
| Environment | Filter by target environment (e.g., staging, production)                                                                         |

Activating filters updates the results count and table data immediately.

### Sync

Click the sync button (top-right) to refresh data without reloading the page.

## Detail Drawer

Click any test case row to open the details drawer. The drawer contains two tabs.

<img
  style={{
maxWidth: "90%"
}}
  src="https://tdstorageus.blob.core.windows.net/public/docs/debug-and-analyze/test-case-results/playwright-test-explorer/test-explorer-side-panel.webp"
  alt="Test Explorer side panel showing test case details with run history and platform analytics"
/>

### Overview Tab

* **Test Run History** displays the most recent executions with status, timestamp, and duration. Click a run to open the full [test run details](/platform/playwright-test-runs) page.
* **Platform Analytics** breaks down executions, failures, flaky count, and average duration by browser or platform.
* **Environment Analytics** shows the same breakdown by environment (e.g., production, staging).

### Errors Tab

Displays unique error messages aggregated across all executions of the test case. Each error entry shows:

| Field         | Description                              |
| :------------ | :--------------------------------------- |
| First seen    | Timestamp of the earliest occurrence     |
| Last seen     | Timestamp of the most recent occurrence  |
| Count         | Total number of times the error occurred |
| Error message | Full error text with stack trace context |

Use the Errors tab to identify recurring failures and track whether fixes have resolved them.

## Get Started

1. **Set scope.** Use Time Period and Environment filters to narrow the dataset.
2. **Identify targets.** Sort by Failure % or Flaky % to surface unstable tests. Sort by Avg Duration to find slow tests, or by Reliability to rank overall health.
3. **Inspect details.** Click a test case to view execution history, platform breakdowns, and error patterns.

## Pagination

Large datasets load in pages. Click **Load More Test Cases** at the bottom of the table to fetch the next batch.

## Related

<CardGroup cols={2}>
  <Card title="Test Runs" icon="play" href="/platform/playwright-test-runs">
    View all test executions
  </Card>

  <Card title="Test Cases" icon="flask" href="/platform/playwright-test-cases">
    Manage and organize test cases
  </Card>

  <Card title="Analytics" icon="chart-line" href="/platform/playwright-test-analytics">
    Project-wide test analytics
  </Card>

  <Card title="Flaky Tests" icon="shuffle" href="/guides/playwright-flaky-test-detection">
    Detect and fix flaky tests
  </Card>
</CardGroup>
