queued 2026-09-24 18:57:44 · started 18:57:46 · finished 18:57:49 · duration 3s · target v2.0.0 · chromium · trigger: cli-adopted · batch: DEMO-013
Activity replay 4 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.59s | goto http://127.0.0.1:8000/demo/freight/login/ | 114 ms |
| +0.69s | fill #username | 76 ms |
| +0.77s | fill #password | 11 ms |
| +0.78s | click #login-btn | 126 ms |
| +0.91s | wait_for_selector #signed-in-user | 159 ms |
| +1.06s | goto http://127.0.0.1:8000/demo/freight/ops/shipments/ | 85 ms |
| +1.07s | ⏱ search shipments | 330 ms |
| +1.15s | fill #shipment-search | 56 ms |
| +1.21s | select_option #status-filter | 18 ms |
| +1.22s | click #apply-filters | 116 ms |
| +1.35s | wait_for_selector #result-count | 54 ms |
| +1.40s | inner_text #result-count | 6 ms |
| +1.41s | ⏱ sort by ETA | 130 ms |
| +1.41s | click #shipments-table th a[data-sort=eta] | 90 ms |
| +1.50s | wait_for_selector #shipments-table th[aria-sort] a[data-sort=eta] | 40 ms |
| +1.54s | ⏱ open AF-100001 | 148 ms |
| +1.54s | click #shipments-table a:text-is('AF-100001') | 108 ms |
| +1.65s | wait_for_selector #ship-status | 39 ms |
| +1.81s | ⏱ save a note | 134 ms |
| +1.81s | fill #note-text | 28 ms |
| +1.84s | click #note-save | 81 ms |
| +1.92s | wait_for_selector #notes-list .note-text:has-text('promised by Friday'), #note-error:not([hidden]) | 25 ms |
| +1.97s | ⏱ mark delivered | 132 ms |
| +1.97s | click #deliver-btn | 82 ms |
| +2.05s | wait_for_selector #ship-status:text-is('Delivered') | 50 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-185746-r296/ |
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.58s] starting DEMO-013
[timing] goto http://127.0.0.1:8000/demo/freight/login/: 114ms
[timing] fill #username: 76ms
[timing] fill #password: 11ms
[timing] click #login-btn: 126ms
[timing] wait_for_selector #signed-in-user: 159ms
[test] [ 1.07s] signed in as tester
[timing] goto http://127.0.0.1:8000/demo/freight/ops/shipments/: 85ms
[timing] fill #shipment-search: 57ms
[timing] select_option #status-filter: 18ms
[timing] click #apply-filters: 116ms
[timing] wait_for_selector #result-count: 54ms
[timing] search shipments: 330ms
[timing] inner_text #result-count: 6ms
[test] [ 1.41s] Showing 1–2 of 2 shipments
[timing] click #shipments-table th a[data-sort=eta]: 90ms
[timing] wait_for_selector #shipments-table th[aria-sort] a[data-sort=eta]: 40ms
[timing] sort by ETA: 130ms
[timing] click #shipments-table a:text-is('AF-100001'): 108ms
[timing] wait_for_selector #ship-status: 39ms
[timing] open AF-100001: 148ms
[test] [ 1.81s] screenshot: 01-shipment.png
[timing] fill #note-text: 28ms
[timing] click #note-save: 81ms
[timing] wait_for_selector #notes-list .note-text:has-text('promised by Friday'), #note-error:not([hidden]): 25ms
[timing] save a note: 134ms
[timing] click #deliver-btn: 82ms
[timing] wait_for_selector #ship-status:text-is('Delivered'): 50ms
[timing] mark delivered: 132ms
[test] [ 2.21s] screenshot: 02-delivered.png
[test] [ 2.22s] PASSED
[harness] security: 0 high, 1 medium, 1 low
[harness] saved trace.zip
[harness] saved video.webm
[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.

