Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.Network.CookieBlockedReason

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
type alias Protocol.Network.CookieBlockedReason
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.ts";
const { CookieBlockedReason } = Protocol.Network;

Types of reasons why a cookie may not be sent with a request.

definition: (
| "SecureOnly"
| "NotOnPath"
| "DomainMismatch"
| "SameSiteStrict"
| "SameSiteLax"
| "SameSiteUnspecifiedTreatedAsLax"
| "SameSiteNoneInsecure"
| "UserPreferences"
| "UnknownError"
| "SchemefulSameSiteStrict"
| "SchemefulSameSiteLax"
| "SchemefulSameSiteUnspecifiedTreatedAsLax"
| "SamePartyFromCrossPartyContext"
| "NameValuePairExceedsMaxSize"
)