queued 2026-09-24 23:22:20 · started 23:22:23 · finished 23:22:26 · duration 3s · target v3.0.0 · chromium · trigger: group · batch: group: Freight smoke
Activity replay 3 frames, captured only while the page was actually changing — idle waits are skipped automatically
+0.00s
Step timings follows the replay — click a step to see it there
| at | step | took |
|---|---|---|
| +0.86s | goto http://127.0.0.1:8000/demo/freight/login/ | 149 ms |
| +1.00s | fill #username | 106 ms |
| +1.11s | fill #password | 28 ms |
| +1.14s | click #login-btn | 111 ms |
| +1.25s | wait_for_selector #signed-in-user | 148 ms |
| +1.40s | ⏱ search shipments | 354 ms |
| +1.40s | goto http://127.0.0.1:8000/demo/freight/ops/shipments/ | 86 ms |
| +1.48s | fill #shipment-search | 67 ms |
| +1.55s | select_option #status-filter | 46 ms |
| +1.60s | click #apply-filters | 90 ms |
| +1.69s | wait_for_selector #result-count | 64 ms |
| +1.76s | click #shipments-table th a[data-sort=eta] | 77 ms |
| +1.76s | inner_text #result-count | 6 ms |
| +1.77s | ⏱ sort by ETA | 110 ms |
| +1.85s | wait_for_selector #shipments-table th[aria-sort] a[data-sort=eta] | 34 ms |
| +1.88s | click #shipments-table a:text-is('AF-100001') | 84 ms |
| +1.88s | ⏱ open AF-100001 | 132 ms |
| +1.96s | wait_for_selector #ship-status | 48 ms |
| +2.13s | fill #note-text | 14 ms |
| +2.13s | ⏱ save a note | 103 ms |
| +2.14s | click #note-save | 44 ms |
| +2.18s | wait_for_selector #notes-list .note-text:has-text('promised by Friday'), #note-error:not([hidden]) | 46 ms |
| +2.24s | click #deliver-btn | 82 ms |
| +2.24s | ⏱ mark delivered | 136 ms |
| +2.33s | wait_for_selector #ship-status:text-is('Delivered') | 55 ms |
Times are when each step began, on the replay's clock. Add your own phases with
with ctx.timed("label"):.
Artifacts
| Run log | run.log |
| Playwright trace | trace.zip
open with: playwright show-trace trace.zip |
| Result JSON | result.json |
| Folder | results/DEMO-013/20260924-232223-r387/ |
Full log
Read from the S3 bucket (the last 20 KB; the whole file is the Run log link above).
[harness] test=DEMO-013 browser=chromium headed=False timeout=120s
[harness] target: http://127.0.0.1:8000/demo/
[test] [ 0.86s] starting DEMO-013
[timing] goto http://127.0.0.1:8000/demo/freight/login/: 149ms
[timing] fill #username: 106ms
[timing] fill #password: 28ms
[timing] click #login-btn: 111ms
[timing] wait_for_selector #signed-in-user: 148ms
[test] [ 1.40s] signed in as tester
[timing] goto http://127.0.0.1:8000/demo/freight/ops/shipments/: 86ms
[timing] fill #shipment-search: 67ms
[timing] select_option #status-filter: 46ms
[timing] click #apply-filters: 89ms
[timing] wait_for_selector #result-count: 64ms
[timing] search shipments: 354ms
[timing] inner_text #result-count: 6ms
[test] [ 1.77s] Showing 1–2 of 2 shipments
[timing] click #shipments-table th a[data-sort=eta]: 77ms
[timing] wait_for_selector #shipments-table th[aria-sort] a[data-sort=eta]: 34ms
[timing] sort by ETA: 111ms
[timing] click #shipments-table a:text-is('AF-100001'): 84ms
[timing] wait_for_selector #ship-status: 48ms
[timing] open AF-100001: 132ms
[test] [ 2.12s] screenshot: 01-shipment.png
[timing] fill #note-text: 14ms
[timing] click #note-save: 44ms
[timing] wait_for_selector #notes-list .note-text:has-text('promised by Friday'), #note-error:not([hidden]): 46ms
[timing] save a note: 103ms
[timing] click #deliver-btn: 82ms
[timing] wait_for_selector #ship-status:text-is('Delivered'): 55ms
[timing] mark delivered: 136ms
[test] [ 2.47s] screenshot: 02-delivered.png
[test] [ 2.48s] PASSED
[harness] security: 0 high, 1 medium, 1 low
[harness] saved trace.zip
[harness] result: passed
Security observations what the browser noticed while this ran — not a penetration test
| Severity | Finding | What to do |
|---|---|---|
| medium | The application is served over plain HTTP http://127.0.0.1:8000/demo/ is not HTTPS, so anything typed into it travels the network in the clear and can be modified in transit. |
On an isolated lab network this may be a deliberate choice -- if so, note it and move on. Anywhere else, terminate TLS in front of the application. |
| low | Response advertises software version (server) server: pw-testhub -- this tells an attacker exactly what to look up known vulnerabilities for. |
Suppress or blank the server header at the proxy. |
| info | Cookie 'csrftoken' is readable by JavaScript (expected) This looks like a CSRF token, which the page's own JavaScript has to read in order to send it back. HttpOnly would break that. Nothing to do -- listed so you know it was checked and not missed. |
No action. Do check that SESSION cookies are HttpOnly. |
All of these appear together on the Security page.

