mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
30 lines
534 B
Markdown
30 lines
534 B
Markdown
|
---
|
||
|
sidebar_label: Page.setCookie
|
||
|
---
|
||
|
|
||
|
# Page.setCookie() method
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Page {
|
||
|
abstract setCookie(...cookies: CookieParam[]): Promise<void>;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | --------------------------------------------- | ----------- |
|
||
|
| cookies | [CookieParam](./puppeteer.cookieparam.md)\[\] | |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
Promise<void>
|
||
|
|
||
|
## Example
|
||
|
|
||
|
```ts
|
||
|
await page.setCookie(cookieObject1, cookieObject2);
|
||
|
```
|