Tags
Using Tags in Currents Dashboard
Tagging is a convenient way to augment your executions with extra data that can be helpful for managing your tests. You can tag the runs (executions) by adding --tag tagA,tagB
flag.
For example, running the next command @currents/playwright
(version 1.7.0+):
npx pwc --key RECORD_KEY --project-id PROJECT_ID --ci-build-id CI_BUILD_ID --tag currents-cli,gha
or for Cypress:
cypress-cloud run --parallel --record --tag currents-cli,gha
would generate a run with the corresponding tags:

The run, spec and test execution recordings will inherit the tags. You can use the tags as a filter when browsing the dashboard to narrow down the results, for example:
filter runs by tags
filter insights and analytics to only include records with a particular tag
filter errors, tests and spec performance explorers to only include records with a particular tag
The tags are also available as part of HTTP Webhooks payload.

Last updated
Was this helpful?