mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
9cb1fde589
Co-authored-by: Maksim Sadym <sadym@google.com> Co-authored-by: Nikolay Vitkov <34244704+Lightning00Blade@users.noreply.github.com>
4.7 KiB
4.7 KiB
sidebar_label |
---|
CookieParam |
CookieParam interface
Cookie parameter object
Signature:
export interface CookieParam
Properties
Property | Modifiers | Type | Description | Default |
---|---|---|---|---|
domain | optional |
string | Cookie domain. | |
expires | optional |
number | Cookie expiration date, session cookie if not set | |
httpOnly | optional |
boolean | True if cookie is http-only. | |
name | string | Cookie name. | ||
partitionKey | optional |
string | Cookie partition key. The site of the top-level URL the browser was visiting at the start of the request to the endpoint that set the cookie. If not set, the cookie will be set as not partitioned. | |
path | optional |
string | Cookie path. | |
priority | optional |
CookiePriority | Cookie Priority. Supported only in Chrome. | |
sameParty | optional |
boolean | True if cookie is SameParty. Supported only in Chrome. | |
sameSite | optional |
CookieSameSite | Cookie SameSite type. | |
secure | optional |
boolean | True if cookie is secure. | |
sourceScheme | optional |
CookieSourceScheme | Cookie source scheme type. Supported only in Chrome. | |
url | optional |
string | The request-URI to associate with the setting of the cookie. This value can affect the default domain, path, and source scheme values of the created cookie. | |
value | string | Cookie value. |