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

Run #336 — DEMO-023

passed
📄 Download report

queued 2026-09-24 20:40:21 · started 20:40:22 · finished 20:40:31 · duration 9s · target v1.0.0 · chromium · trigger: cli-adopted · batch: 3 tests (terminal)

Activity replay 7 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.76s goto http://127.0.0.1:8000/demo/freight/login/ 150 ms
+0.91s click #forgot-link 276 ms
+1.19s fill #forgot-login 71 ms
+1.26s click #forgot-btn 87 ms
+1.35s inner_text #forgot-ref 34 ms
+1.38s ⏱ wait for the email 4.46 s
+1.38s goto http://127.0.0.1:8000/demo/freight/mailbox/?to=driver@acme-freight.example 36 ms
+1.42s wait_for_selector #mail-list a.mail-subject:has-text('ref B72568') 4.42 s
+5.84s click #mail-list a.mail-subject:has-text('ref B72568') 99 ms
+5.94s wait_for_selector #mail-body a[href*='/login/reset/'] 90 ms
+6.14s click #mail-body a[href*='/login/reset/'] 93 ms
+6.14s ⏱ choose a new password 479 ms
+6.23s fill #new-password 58 ms
+6.29s fill #confirm-password 20 ms
+6.31s click #reset-btn 160 ms
+6.47s wait_for_selector #login-btn 149 ms
+6.62s fill #username 23 ms
+6.62s ⏱ sign in with the new password 690 ms
+6.63s fill #password 65 ms
+6.71s click #login-btn 383 ms
+7.09s wait_for_selector #signed-in-user 218 ms
+7.31s click #sign-out 154 ms
+7.46s wait_for_selector #login-btn 71 ms
+7.53s ⏱ follow the same link again 192 ms
+7.54s goto http://127.0.0.1:8000/demo/freight/mailbox/1/ 55 ms
+7.58s click #mail-body a[href*='/login/reset/'] 96 ms
+7.68s wait_for_selector #reset-invalid, #reset-form 40 ms
+7.88s inner_text #reset-invalid-why 6 ms

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

Screenshots

01-the_reset_email.png
01-the_reset_email.png
02-the_same_link_a_second_time.png
02-the_same_link_a_second_time.png

Artifacts

Run logrun.log
Playwright trace trace.zip open with: playwright show-trace trace.zip
Result JSONresult.json
Folderresults/DEMO-023/20260924-204022-r336/

Full log

Read from the S3 bucket (the last 20 KB; the whole file is the Run log link above).

[harness] test=DEMO-023 browser=chromium headed=False timeout=180s
[harness] target: http://127.0.0.1:8000/demo/
[test] [   0.76s] starting DEMO-023
[timing] goto http://127.0.0.1:8000/demo/freight/login/: 150ms
[timing] click #forgot-link: 276ms
[timing] fill #forgot-login: 71ms
[timing] click #forgot-btn: 87ms
[timing] inner_text #forgot-ref: 34ms
[test] [   1.38s] reset requested, reference B72568
[timing] goto http://127.0.0.1:8000/demo/freight/mailbox/?to=driver@acme-freight.example: 36ms
[timing] wait_for_selector #mail-list a.mail-subject:has-text('ref B72568'): 4421ms
[timing] wait for the email: 4457ms
[timing] click #mail-list a.mail-subject:has-text('ref B72568'): 99ms
[timing] wait_for_selector #mail-body a[href*='/login/reset/']: 90ms
[test] [   6.14s] screenshot: 01-the_reset_email.png
[timing] click #mail-body a[href*='/login/reset/']: 93ms
[timing] fill #new-password: 58ms
[timing] fill #confirm-password: 20ms
[timing] click #reset-btn: 160ms
[timing] wait_for_selector #login-btn: 149ms
[timing] choose a new password: 479ms
[timing] fill #username: 23ms
[timing] fill #password: 65ms
[timing] click #login-btn: 383ms
[timing] wait_for_selector #signed-in-user: 218ms
[timing] sign in with the new password: 690ms
[test] [   7.31s] signed in with the new password
[timing] click #sign-out: 153ms
[timing] wait_for_selector #login-btn: 71ms
[timing] goto http://127.0.0.1:8000/demo/freight/mailbox/1/: 55ms
[timing] click #mail-body a[href*='/login/reset/']: 96ms
[timing] wait_for_selector #reset-invalid, #reset-form: 40ms
[timing] follow the same link again: 192ms
[test] [   7.88s] screenshot: 02-the_same_link_a_second_time.png
[timing] inner_text #reset-invalid-why: 6ms
[test] [   7.89s] It has already been used to change the password — each reset link works once.
[test] [   7.89s] 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

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.