queued 2026-09-24 22:04:44 · started 22:04:45 · finished 22:04:51 · duration 5s · target v3.0.0 · chromium · trigger: group · batch: group: Freight platform
Activity replay 6 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.85s | goto http://127.0.0.1:8000/demo/freight/login/ | 198 ms |
| +1.04s | fill #username | 126 ms |
| +1.18s | fill #password | 71 ms |
| +1.25s | click #login-btn | 229 ms |
| +1.48s | wait_for_selector #signed-in-user | 183 ms |
| +1.66s | goto http://127.0.0.1:8000/demo/freight/ops/docks/ | 124 ms |
| +1.78s | get_attribute #arrivals .dock-card[data-hazardous='1'] | 75 ms |
| +1.85s | get_attribute #arrivals .dock-card[data-heavy='1'][data-hazardous='0'] | 35 ms |
| +1.90s | get_attribute #arrivals .dock-card[data-heavy='0'][data-hazardous='0'] | 22 ms |
| +1.92s | ⏱ drag a normal load to Door 3, 09:00 | 403 ms |
| +1.92s | drag_and_drop .dock-card[data-arrival='IN-0924-03'] | 233 ms |
| +2.15s | wait_for_selector td[data-cell='D3|09:00'] .dock-card[data-arrival='IN-0924-03'] | 170 ms |
| +2.31s | ⏱ try hazardous goods at Door 1 | 485 ms |
| +2.31s | drag_and_drop .dock-card[data-arrival='IN-0924-01'] | 235 ms |
| +2.55s | wait_for_selector #dock-error:not([hidden]) | 250 ms |
| +2.80s | inner_text #dock-error | 266 ms |
| +3.36s | ⏱ drag hazardous goods to Door 4 (hazmat) | 354 ms |
| +3.36s | drag_and_drop .dock-card[data-arrival='IN-0924-01'] | 114 ms |
| +3.47s | wait_for_selector td[data-cell='D4|10:00'] .dock-card[data-arrival='IN-0924-01'] | 239 ms |
| +3.71s | drag_and_drop .dock-card[data-arrival='IN-0924-02'] | 171 ms |
| +3.71s | ⏱ drag a heavy load to a forklift door | 370 ms |
| +3.88s | wait_for_selector td[data-cell='D1|11:00'] .dock-card[data-arrival='IN-0924-02'] | 199 ms |
| +4.08s | reload | 98 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-021/20260924-220445-r361/ |
Full log
Read from the S3 bucket (the last 20 KB; the whole file is the Run log link above).
[harness] test=DEMO-021 browser=chromium headed=False timeout=120s [harness] target: http://127.0.0.1:8000/demo/ [test] [ 0.85s] starting DEMO-021 [timing] goto http://127.0.0.1:8000/demo/freight/login/: 198ms [timing] fill #username: 126ms [timing] fill #password: 71ms [timing] click #login-btn: 229ms [timing] wait_for_selector #signed-in-user: 183ms [test] [ 1.66s] signed in as tester [timing] goto http://127.0.0.1:8000/demo/freight/ops/docks/: 124ms [timing] get_attribute #arrivals .dock-card[data-hazardous='1']: 75ms [timing] get_attribute #arrivals .dock-card[data-heavy='1'][data-hazardous='0']: 35ms [timing] get_attribute #arrivals .dock-card[data-heavy='0'][data-hazardous='0']: 22ms [test] [ 1.92s] hazmat IN-0924-01, heavy IN-0924-02, normal IN-0924-03 [timing] drag_and_drop .dock-card[data-arrival='IN-0924-03']: 233ms [timing] wait_for_selector td[data-cell='D3|09:00'] .dock-card[data-arrival='IN-0924-03']: 170ms [timing] drag a normal load to Door 3, 09:00: 403ms [timing] drag_and_drop .dock-card[data-arrival='IN-0924-01']: 235ms [timing] wait_for_selector #dock-error:not([hidden]): 250ms [timing] try hazardous goods at Door 1: 485ms [timing] inner_text #dock-error: 266ms [test] [ 3.32s] screenshot: 01-refused.png [timing] drag_and_drop .dock-card[data-arrival='IN-0924-01']: 114ms [timing] wait_for_selector td[data-cell='D4|10:00'] .dock-card[data-arrival='IN-0924-01']: 239ms [timing] drag hazardous goods to Door 4 (hazmat): 354ms [timing] drag_and_drop .dock-card[data-arrival='IN-0924-02']: 171ms [timing] wait_for_selector td[data-cell='D1|11:00'] .dock-card[data-arrival='IN-0924-02']: 199ms [timing] drag a heavy load to a forklift door: 370ms [timing] reload: 98ms [test] [ 4.40s] screenshot: 02-scheduled.png [test] [ 4.40s] 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.

