For the complete documentation index, see llms.txt. This page is also available as Markdown.

Set Cookie

Set a browser cookie.

Set Cookie writes a named cookie into the browser. Use it to seed session state, consent flags, or test data before the application reads cookies on the next request.

Set cookie Test Step

When to use it

  • Preload an authentication or session cookie before opening a protected page.

  • Set a consent or preference cookie so the UI skips a banner.

  • Pair with Check Cookie or Store Cookie to confirm or reuse the value later.

Configure

Basics

Field
What to set

Cookie Name

Name of the cookie to write

Cookie Value

Value as text and/or a Value

Advanced

Field
What to set

Domain

Cookie domain as text and/or a Value

Expiry

Expiry as text and/or a Value

HTTP Only

true or false (default)

Path

Cookie path as text and/or a Value

Same Site

None, Lax (default), or Strict

Secure

true or false (default)

Status on fail

Tags: data, cookie, set, save, add

Last updated