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

Run #472 — DEMO-021

passed
📄 Download report

queued 2026-09-25 00:30:11 · started 00:30:14 · finished 00:30:17 · duration 3s · target v3.0.0 · chromium · trigger: group · batch: group: Python and TypeScript, side by side

Activity replay 5 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.71s goto http://127.0.0.1:8000/demo/freight/login/ 160 ms
+0.87s fill #username 102 ms
+0.97s fill #password 14 ms
+0.98s click #login-btn 116 ms
+1.10s wait_for_selector #signed-in-user 127 ms
+1.23s goto http://127.0.0.1:8000/demo/freight/ops/docks/ 71 ms
+1.30s get_attribute #arrivals .dock-card[data-hazardous='1'] 28 ms
+1.33s get_attribute #arrivals .dock-card[data-heavy='1'][data-hazardous='0'] 10 ms
+1.34s get_attribute #arrivals .dock-card[data-heavy='0'][data-hazardous='0'] 9 ms
+1.35s ⏱ drag a normal load to Door 3, 09:00 214 ms
+1.35s drag_and_drop .dock-card[data-arrival='IN-0925-03'] 111 ms
+1.46s wait_for_selector td[data-cell='D3|09:00'] .dock-card[data-arrival='IN-0925-03'] 103 ms
+1.56s ⏱ try hazardous goods at Door 1 129 ms
+1.56s drag_and_drop .dock-card[data-arrival='IN-0925-01'] 96 ms
+1.66s wait_for_selector #dock-error:not([hidden]) 33 ms
+1.69s inner_text #dock-error 17 ms
+1.88s drag_and_drop .dock-card[data-arrival='IN-0925-01'] 401 ms
+1.88s ⏱ drag hazardous goods to Door 4 (hazmat) 520 ms
+2.28s wait_for_selector td[data-cell='D4|10:00'] .dock-card[data-arrival='IN-0925-01'] 119 ms
+2.40s drag_and_drop .dock-card[data-arrival='IN-0925-02'] 130 ms
+2.40s ⏱ drag a heavy load to a forklift door 256 ms
+2.53s wait_for_selector td[data-cell='D1|11:00'] .dock-card[data-arrival='IN-0925-02'] 126 ms
+2.66s reload 109 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/20260925-003013-r472/

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.71s] starting DEMO-021
[timing] goto http://127.0.0.1:8000/demo/freight/login/: 160ms
[timing] fill #username: 102ms
[timing] fill #password: 14ms
[timing] click #login-btn: 116ms
[timing] wait_for_selector #signed-in-user: 127ms
[test] [   1.23s] signed in as tester
[timing] goto http://127.0.0.1:8000/demo/freight/ops/docks/: 71ms
[timing] get_attribute #arrivals .dock-card[data-hazardous='1']: 28ms
[timing] get_attribute #arrivals .dock-card[data-heavy='1'][data-hazardous='0']: 10ms
[timing] get_attribute #arrivals .dock-card[data-heavy='0'][data-hazardous='0']: 9ms
[test] [   1.35s] hazmat IN-0925-01, heavy IN-0925-02, normal IN-0925-03
[timing] drag_and_drop .dock-card[data-arrival='IN-0925-03']: 111ms
[timing] wait_for_selector td[data-cell='D3|09:00'] .dock-card[data-arrival='IN-0925-03']: 103ms
[timing] drag a normal load to Door 3, 09:00: 214ms
[timing] drag_and_drop .dock-card[data-arrival='IN-0925-01']: 96ms
[timing] wait_for_selector #dock-error:not([hidden]): 33ms
[timing] try hazardous goods at Door 1: 129ms
[timing] inner_text #dock-error: 17ms
[test] [   1.86s] screenshot: 01-refused.png
[timing] drag_and_drop .dock-card[data-arrival='IN-0925-01']: 401ms
[timing] wait_for_selector td[data-cell='D4|10:00'] .dock-card[data-arrival='IN-0925-01']: 119ms
[timing] drag hazardous goods to Door 4 (hazmat): 520ms
[timing] drag_and_drop .dock-card[data-arrival='IN-0925-02']: 130ms
[timing] wait_for_selector td[data-cell='D1|11:00'] .dock-card[data-arrival='IN-0925-02']: 126ms
[timing] drag a heavy load to a forklift door: 257ms
[timing] reload: 109ms
[test] [   2.90s] screenshot: 02-scheduled.png
[test] [   2.90s] 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.