Skip to content We're live on Product Hunt today Upvote
install

tool · one of 34 Pro script file

Recorder

Can I record what I just did as a test?

The gap between reproducing a bug by hand and having a test for it is transcription, and transcription is where the reproduction gets lost. This records what you do - including across navigations - and writes it as a script.

Reach it Press + K on any tab and type recorder. Ctrl + K on Windows and Linux

Records what you click and hands back a Playwright test
records clicks, typing, navigation
writes nothing on the page
sends nothing
emits a Playwright spec
redacts password fields
plan free to record and copy · Pro saves the file
section#about

What this actually is

While reproducing something, not afterwards. The panel owns the step list rather than the page, because a navigation destroys anything running inside the page - which is why recorders that live in the page lose everything at the first link.

section#asked

Asked about this tool

Does my typing leave the browser?

No. The recording is built and printed in the page; nothing is uploaded, and the panel makes no request while recording. Password fields are never captured at all, so there is nothing to leak even locally.

Will the test still pass tomorrow?

That depends on the selectors, which is why the fragile ones are marked. A step locked to a role and an accessible name survives a redesign; one locked to div > div:nth-child(3) does not, and you are told which you have.

Can it record a login?

It records the steps and leaves the password as a placeholder for you to fill from an environment variable - which is how the test should have been written anyway.

how to use recorder

  1. Open Recorder before you reproduce anything, not afterwards.
  2. Do the thing. Clicks, typing and navigations are all recorded, including across pages.
  3. Stop, and read the step list. The panel holds it because a navigation destroys anything in the page.
  4. Export the Playwright spec. Password fields are redacted.