🧪 Test Hub
testing: Demo target v3.0.0 · built-in demo site
← →

Run #398 — DEMO-021

passed
📄 Download report

queued 2026-09-24 23:34:49 · started 23:34:51 · finished 23:34:55 · duration 4s · 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

activity frame
+0.00s

Step timings follows the replay — click a step to see it there

atsteptook
+0.88s goto http://127.0.0.1:8000/demo/freight/login/ 183 ms
+1.06s fill #username 110 ms
+1.17s fill #password 45 ms
+1.22s click #login-btn 134 ms
+1.34s wait_for_selector #signed-in-user 136 ms
+1.49s goto http://127.0.0.1:8000/demo/freight/ops/docks/ 95 ms
+1.58s get_attribute #arrivals .dock-card[data-hazardous='1'] 48 ms
+1.63s get_attribute #arrivals .dock-card[data-heavy='1'][data-hazardous='0'] 19 ms
+1.65s get_attribute #arrivals .dock-card[data-heavy='0'][data-hazardous='0'] 19 ms
+1.66s ⏱ drag a normal load to Door 3, 09:00 279 ms
+1.66s drag_and_drop .dock-card[data-arrival='IN-0924-03'] 129 ms
+1.79s wait_for_selector td[data-cell='D3|09:00'] .dock-card[data-arrival='IN-0924-03'] 150 ms
+1.94s ⏱ try hazardous goods at Door 1 179 ms
+1.95s drag_and_drop .dock-card[data-arrival='IN-0924-01'] 124 ms
+2.06s wait_for_selector #dock-error:not([hidden]) 55 ms
+2.12s inner_text #dock-error 50 ms
+2.66s drag_and_drop .dock-card[data-arrival='IN-0924-01'] 160 ms
+2.66s ⏱ drag hazardous goods to Door 4 (hazmat) 358 ms
+2.82s wait_for_selector td[data-cell='D4|10:00'] .dock-card[data-arrival='IN-0924-01'] 198 ms
+3.02s ⏱ drag a heavy load to a forklift door 311 ms
+3.02s drag_and_drop .dock-card[data-arrival='IN-0924-02'] 178 ms
+3.20s wait_for_selector td[data-cell='D1|11:00'] .dock-card[data-arrival='IN-0924-02'] 133 ms
+3.33s reload 87 ms

Times are when each step began, on the replay's clock. Add your own phases with with ctx.timed("label"):.

Screenshots

01-refused.png
01-refused.png
02-scheduled.png
02-scheduled.png

Artifacts

Run logrun.log
Playwright trace trace.zip open with: playwright show-trace trace.zip
Result JSONresult.json
Folderresults/DEMO-021/20260924-233451-r398/

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.88s] starting DEMO-021
[timing] goto http://127.0.0.1:8000/demo/freight/login/: 183ms
[timing] fill #username: 110ms
[timing] fill #password: 45ms
[timing] click #login-btn: 135ms
[timing] wait_for_selector #signed-in-user: 137ms
[test] [   1.48s] signed in as tester
[timing] goto http://127.0.0.1:8000/demo/freight/ops/docks/: 95ms
[timing] get_attribute #arrivals .dock-card[data-hazardous='1']: 48ms
[timing] get_attribute #arrivals .dock-card[data-heavy='1'][data-hazardous='0']: 19ms
[timing] get_attribute #arrivals .dock-card[data-heavy='0'][data-hazardous='0']: 19ms
[test] [   1.67s] hazmat IN-0924-01, heavy IN-0924-02, normal IN-0924-03
[timing] drag_and_drop .dock-card[data-arrival='IN-0924-03']: 129ms
[timing] wait_for_selector td[data-cell='D3|09:00'] .dock-card[data-arrival='IN-0924-03']: 150ms
[timing] drag a normal load to Door 3, 09:00: 279ms
[timing] drag_and_drop .dock-card[data-arrival='IN-0924-01']: 124ms
[timing] wait_for_selector #dock-error:not([hidden]): 55ms
[timing] try hazardous goods at Door 1: 179ms
[timing] inner_text #dock-error: 50ms
[test] [   2.60s] screenshot: 01-refused.png
[timing] drag_and_drop .dock-card[data-arrival='IN-0924-01']: 160ms
[timing] wait_for_selector td[data-cell='D4|10:00'] .dock-card[data-arrival='IN-0924-01']: 198ms
[timing] drag hazardous goods to Door 4 (hazmat): 358ms
[timing] drag_and_drop .dock-card[data-arrival='IN-0924-02']: 178ms
[timing] wait_for_selector td[data-cell='D1|11:00'] .dock-card[data-arrival='IN-0924-02']: 133ms
[timing] drag a heavy load to a forklift door: 311ms
[timing] reload: 87ms
[test] [   3.60s] screenshot: 02-scheduled.png
[test] [   3.60s] 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

SeverityFindingWhat 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.