HomeDocsSmart Reports
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.

ParameterTypeDescription
StepsarrayEvery action taken with pass/fail status, duration, and screenshot
GradeA+ to FOverall test grade based on pass rate and severity of failures
SecurityobjectSecurity score, letter grade, and array of findings (if security scan was included)
TimingobjectTotal duration, per-step timing, and slowest steps highlighted
MetadataobjectTest 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"
}