- Deploy parameters
- Hardware / Resource Requirements (HWE)
- Playwright Native Report (Trace Configuration)
| Parameter | Type | Mandatory | Default value | Description |
|---|---|---|---|---|
| ENVIRONMENT_NAME | string | yes | "default" |
Environment name (e.g., dev, test, prod) |
| ENV_CONFIGURATION_TEMPLATE_FILENAME | string | no | environment-configuration-template.json |
Environment configuration template filename used during runtime configuration rendering. |
| ATP_TESTS_GIT_REPO_URL | string | yes | "" |
Git repository URL for cloning test sources. Git-URL-to-project-tests.git |
| ATP_STORAGE_BUCKET | string | yes | "" |
S3 bucket name for uploading results. |
| ATP_STORAGE_USERNAME | string | yes | "" |
Access key for S3 bucket. |
| ATP_STORAGE_PASSWORD | string | yes | "" |
Secret key for S3 bucket. |
| ATP_STORAGE_SERVER_URL | string | yes | "" |
API endpoint for accessing S3 storage. |
| ATP_STORAGE_SERVER_UI_URL | string | yes | "" |
Web UI endpoint for viewing files in the S3 bucket. |
| ATP_REPORT_VIEW_UI_URL | string | yes | "" |
URL for viewing generated test reports. |
| ATP_TESTS_GIT_TOKEN | string | yes | "" |
Access token for private Git repositories with tests. |
| TEST_PARAMS | JSON | yes | {} |
Specify what test or scope should be run, for example: '{"execution_list":[{"type": "scope","name": "regression"}]}' |
| ATP_ENVGENE_CONFIGURATION | JSON | no | {} |
Additional test parameters (Systems) to pass to test runner from EnvGene. |
| ATP_TESTS_GIT_REPO_BRANCH | string | no | main |
Git branch to checkout. |
| ATP_STORAGE_PROVIDER | string | no | "minio" |
Type of S3 storage (e.g., minio, aws). |
| CURRENT_DATE | string | no | "" |
Date to use in report naming (format: YYYY-MM-DD). |
| CURRENT_TIME | string | no | "" |
Time to use in report naming (format: HH:MM:SS). |
| ATP_RUNNER_JOB_TTL | integer | no | 43200 |
Time-to-live for the test job in seconds. |
| ATP_RUNNER_JOB_EXIT_STRATEGY | integer | no | 0 |
Delay in seconds before job termination (for debugging). |
| ENABLE_JIRA_INTEGRATION | boolean | no | false |
Enable Jira integration for tests. |
| DEBUG_MODE | boolean | no | false |
Enable additional debug behavior and logs in runner scripts. |
| PLAYWRIGHT_TRACE_MODE | string | no | retain-on-failure |
Defines when Playwright should record execution traces (trace.zip) for debugging. Supported values: on, off, retain-on-failure, on-first-retry. See Playwright Native Report (Trace Configuration). |
| ATP_MONITORING_ENABLED | boolean | no | false |
Enable creation monitoring objects for runners. |
| SECURITY_CONTEXT_ENABLED | boolean | no | false |
Flag to enable or disable the security context for the Playwright Runner service . |
| ATP_METRICS_ENABLED | boolean | no | false |
To enable metrics push; any other value skips (exit 0). |
| ATP_METRICS_URL | string | no | `` | Base URL for VictoriaMetrics / vmagent. |
| ATP_METRICS_TYPE | string | no | pushgateway |
Possible values pushgateway (default) or vm-native (POST to /api/v1/import/prometheus with extra_label query params). |
| ATP_METRICS_AUTH_TYPE | string | no | none |
Possible values none (default), basic, or bearer. |
| ATP_METRICS_USER | string | no | `` | Login for metrics service |
| ATP_METRICS_PASS | string | no | `` | HTTP Basic credentials when ATP_METRICS_AUTH_TYPE=basic. |
| ATP_METRICS_TOKEN | string | no | `` | Bearer token when ATP_METRICS_AUTH_TYPE=bearer. |
| EXTRA_VARS | string | no | `` | Extra Variables propagation from job. Example:var1=value1,var2=value2, or EXTRA_VARS=`var1=value1; var2=value2;. |
Supported 2 profiles: dev, prod.
| Parameter | Dev | Prod |
|---|---|---|
| MEMORY_REQUEST | 1000Mi | 2000Mi |
| MEMORY_LIMIT | 2000Mi | 3000Mi |
| CPU_REQUEST | 100m | 100m |
| CPU_LIMIT | 500m | 1000m |
The Playwright test runner supports configurable tracing through the environment variable PLAYWRIGHT_TRACE_MODE.
It defines when Playwright should record execution traces (trace.zip) for debugging.
| Value | Description |
|---|---|
on |
Record traces for all tests (useful for local debugging). |
off |
Disable tracing entirely (fastest test execution). |
retain-on-failure |
Record traces only for failed tests — recommended for CI environments. |
on-first-retry |
Record traces only when a test is retried after failure. |
To make the environment variable effective, ensure your test configuration uses it:
// playwright.config.js
import { defineConfig } from '@playwright/test';
export default defineConfig({
use: {
trace: process.env.PLAYWRIGHT_TRACE_MODE || 'retain-on-failure',
},
});
To debug a test using Playwright trace:
-
Go to your S3 bucket → open the Report folder → go to your run →
attachmentsfolder → select test. -
Download the file
trace.zip. -
Open the trace locally:
npx playwright show-trace trace.ziporplaywright show-trace trace.zip. -
Inspect the test execution. The trace viewer will open in your browser, allowing you to: replay test steps, view console logs & network requests, inspect DOM snapshots at each action.
Variables ATP_METRICS_ENABLED=true, ATP_METRICS_URL must be set. The script pushes the same payload to each configured target; it returns 1 if no target is configured or if every configured push fails.
URL shapes
- pushgateway (Prometheus or VM):
{BASE}/metrics/job/atp_playwright_runner/instance/{ENV}/{DATE}/{TIME} - vm-native:
{BASE}/api/v1/import/prometheus?extra_label=...(run identity viaextra_labelforjob,instance,run_date,run_time)
Binary result per individual test case — ideal for single-test failure alerts.
atp_test_case_result{test_name="Login smoke test", environment="prod", suite="Auth", status="failed"} 0
atp_test_case_result{test_name="Create order", environment="prod", suite="Orders", status="passed"} 1
- Value:
1= passed,0= failed/skipped - Labels:
test_name,environment,suite(Allure suite label, if present),status(passed/failed/skipped — lets you distinguish skipped from failed without extra metric) - Alert example:
atp_test_case_result{environment="prod"} == 0
Aggregated pass rate for the whole execution scope — for threshold-based alerts.
atp_test_suite_pass_rate{environment="prod", overall_status="PARTIAL"} 87.50
- Value:
0.0 – 100.0 - Labels:
environment,overall_status(PASSED / PARTIAL / FAILED) - Alert example:
atp_test_suite_pass_rate{environment="prod"} < 80
Count metrics per run — useful for dashboards and trend panels.
atp_test_suite_total{environment="prod"} 24
atp_test_suite_passed{environment="prod"} 21
atp_test_suite_failed{environment="prod"} 2
atp_test_suite_skipped{environment="prod"} 1
Per-test execution time from Allure start/stop timestamps — for performance regression alerts.
atp_test_case_duration_seconds{test_name="Login smoke test", environment="prod", suite="Auth"} 3.412