mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
502 B
502 B
sidebar_label
| sidebar_label |
|---|
| Page.setCookie |
Page.setCookie() method
Signature:
class Page {
setCookie(...cookies: Protocol.Network.CookieParam[]): Promise<void>;
}
Parameters
| Parameter | Type | Description |
|---|---|---|
| cookies | Protocol.Network.CookieParam[] |
Returns:
Promise<void>
Example
await page.setCookie(cookieObject1, cookieObject2);