Skip to main content
The analytics page provides insights into your test suite’s health, including pass rates, flaky rates, and historical trends.

Search Syntax

Filter test cases using the search bar with these patterns:
SyntaxExampleDescription
TermloginMatches name or file path containing “login”
Multiple termslogin authMust contain both terms (AND)
Quoted phrase"user login"Treats multi-word text as a single term
Negation-adminExcludes tests matching “admin”
Negated phrase-"slow test"Excludes tests matching “slow test”
Combinedcheckout -guestContains “checkout”, excludes “guest”

Field Filters

SyntaxExampleDescription
project:project:chromiumFilter by Playwright project name
tag:tag:criticalFilter by tag (multiple tags use OR)
flaky_rate:flaky_rate:>10Filter by flaky rate percentage
fail_rate:fail_rate:>=25Filter by fail rate percentage

Metric Filter Operators

For flaky_rate and fail_rate, you can use these comparison operators:
  • > greater than (e.g., flaky_rate:>10)
  • >= greater than or equal (e.g., fail_rate:>=25)
  • < less than (e.g., flaky_rate:<5)
  • <= less than or equal (e.g., fail_rate:<=10)
  • = equals (e.g., flaky_rate:=0)
If no operator is specified, >= is used by default.

Examples

QueryDescription
login flaky_rate:>10Login tests with flaky rate above 10%
tag:smoke tag:criticalTests with either smoke OR critical tag
project:firefox -skipFirefox project tests, excluding “skip”
fail_rate:>=20 -tag:known-flakyHigh failure tests, excluding known flaky