Smart Reports
Smart Reports
Every test generates a detailed, shareable report with pass/fail status, timing, screenshots, security findings, and an overall grade.
Report contents
Every test generates a detailed report: pass/fail status per step, timing breakdown, screenshots, the full action log, security findings with severity ratings, and an overall grade. Reports are shareable via link and exportable as JSON.
| Parameter | Type | Description |
|---|---|---|
| Steps | array | Every action taken with pass/fail status, duration, and screenshot |
| Grade | A+ to F | Overall test grade based on pass rate and severity of failures |
| Security | object | Security score, letter grade, and array of findings (if security scan was included) |
| Timing | object | Total duration, per-step timing, and slowest steps highlighted |
| Metadata | object | Test type, URL, configuration, browser session ID, timestamp |
JSON export format
Download the full report as structured JSON for integration with your own tools:
report.json
json
{
"id": "test_abc123",
"url": "https://yourapp.com",
"test_type": "full",
"grade": "A",
"duration_ms": 6950,
"steps": [
{
"name": "Navigate to signup",
"status": "pass",
"duration_ms": 1240,
"screenshot": "https://..."
}
],
"security": {
"score": 72,
"grade": "B",
"findings": [...]
},
"created_at": "2026-02-21T12:00:00Z"
}