Skip to content

Secret vault

WeftKit’s answer to credentials in tests is not encryption after the fact — it is never capturing the value in the first place. During recording a credential field becomes a named reference; you supply the value once, afterwards, into your operating system’s credential vault.

The WeftKit Secret Vault showing a secret reference named ADMIN_PASSWORD with its scope, a credential setup queue, and badges reading Suite payload: reference only, Frontend visibility: never exposed.
A reference, its scope, and the badges stating exactly where the value is and is not visible.

References, not values

Passwords, reusable tokens, and API keys are replaced with named references during recording — for example ${secret.ADMIN_PASSWORD}. Suites, logs, AI provider packets, and reports retain the reference only. There is no reveal action anywhere in the app, because there is nothing stored in the app to reveal.

Where a secret value is and is not visible
SurfaceWhat it holds
Suite payloadReference only.
Frontend storeNever exposed — values do not enter the UI layer.
Runner resolutionThe desktop runner resolves the reference at replay time from the OS credential vault, falling back to WeftKit’s encrypted local store when the vault will not return it to an updated build.
Reports and AI packetsReference only. Credential-shaped strings are scrubbed before anything is persisted or sent.

The credential setup queue

After a recording, every reference it detected appears in a queue with the suite that needs it. Until you define a value, that suite is marked Needs attention rather than failing halfway through a replay. Each entry states its scope — the host and path where the credential is used — so you can tell two similarly named references apart.

Values are write-only. You enter a reusable test value once; the app stores it in the OS credential vault and never displays it again, not even to you.

One-time codes stay human

References that look like one-time codes — OTP, TOTP, MFA and two-factor patterns — are deliberately refused by the vault. A code that is valid once cannot be a stored secret, so WeftKit treats those steps as human checkpoints instead of pretending to automate them.

Scoping

  • A reference belongs to a project, and can optionally be narrowed to a single suite.
  • A suite-specific value takes precedence over a project-wide value with the same name.
  • Deleting a project removes its vaulted entries, including git tokens, rather than orphaning them.
LimitationBrowser mode can author reference metadata but cannot accept or store a value. Only the desktop app talks to the operating-system credential vault.