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

Run #348 — DEMO-023

passed
📄 Download report

queued 2026-09-24 20:41:19 · started 20:41:20 · finished 20:41:29 · duration 9s · target v3.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.73s goto http://127.0.0.1:8000/demo/freight/login/ 251 ms
+0.98s click #forgot-link 177 ms
+1.16s fill #forgot-login 70 ms
+1.23s click #forgot-btn 143 ms
+1.37s inner_text #forgot-ref 57 ms
+1.43s ⏱ wait for the email 4.55 s
+1.43s goto http://127.0.0.1:8000/demo/freight/mailbox/?to=driver@acme-freight.example 66 ms
+1.50s wait_for_selector #mail-list a.mail-subject:has-text('ref FC13FC') 4.48 s
+5.97s click #mail-list a.mail-subject:has-text('ref FC13FC') 116 ms
+6.09s wait_for_selector #mail-body a[href*='/login/reset/'] 67 ms
+6.30s click #mail-body a[href*='/login/reset/'] 99 ms
+6.30s ⏱ choose a new password 466 ms
+6.41s fill #new-password 44 ms
+6.45s fill #confirm-password 80 ms
+6.53s click #reset-btn 184 ms
+6.71s wait_for_selector #login-btn 60 ms
+6.77s ⏱ sign in with the new password 462 ms
+6.77s fill #username 38 ms
+6.81s fill #password 18 ms
+6.83s click #login-btn 202 ms
+7.03s wait_for_selector #signed-in-user 204 ms
+7.24s click #sign-out 234 ms
+7.47s wait_for_selector #login-btn 62 ms
+7.53s goto http://127.0.0.1:8000/demo/freight/mailbox/5/ 72 ms
+7.53s ⏱ follow the same link again 331 ms
+7.60s click #mail-body a[href*='/login/reset/'] 178 ms
+7.78s wait_for_selector #reset-invalid, #reset-form 81 ms
+8.07s inner_text #reset-invalid-why 13 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-204120-r348/

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.73s] starting DEMO-023
[timing] goto http://127.0.0.1:8000/demo/freight/login/: 251ms
[timing] click #forgot-link: 177ms
[timing] fill #forgot-login: 70ms
[timing] click #forgot-btn: 143ms
[timing] inner_text #forgot-ref: 57ms
[test] [   1.43s] reset requested, reference FC13FC
[timing] goto http://127.0.0.1:8000/demo/freight/mailbox/?to=driver@acme-freight.example: 66ms
[timing] wait_for_selector #mail-list a.mail-subject:has-text('ref FC13FC'): 4481ms
[timing] wait for the email: 4547ms
[timing] click #mail-list a.mail-subject:has-text('ref FC13FC'): 116ms
[timing] wait_for_selector #mail-body a[href*='/login/reset/']: 67ms
[test] [   6.30s] screenshot: 01-the_reset_email.png
[timing] click #mail-body a[href*='/login/reset/']: 99ms
[timing] fill #new-password: 44ms
[timing] fill #confirm-password: 80ms
[timing] click #reset-btn: 184ms
[timing] wait_for_selector #login-btn: 60ms
[timing] choose a new password: 467ms
[timing] fill #username: 38ms
[timing] fill #password: 18ms
[timing] click #login-btn: 202ms
[timing] wait_for_selector #signed-in-user: 204ms
[timing] sign in with the new password: 462ms
[test] [   7.23s] signed in with the new password
[timing] click #sign-out: 234ms
[timing] wait_for_selector #login-btn: 62ms
[timing] goto http://127.0.0.1:8000/demo/freight/mailbox/5/: 72ms
[timing] click #mail-body a[href*='/login/reset/']: 178ms
[timing] wait_for_selector #reset-invalid, #reset-form: 81ms
[timing] follow the same link again: 331ms
[test] [   8.06s] screenshot: 02-the_same_link_a_second_time.png
[timing] inner_text #reset-invalid-why: 13ms
[test] [   8.08s] It has already been used to change the password — each reset link works once.
[test] [   8.08s] 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.