mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
31 lines
591 B
Markdown
31 lines
591 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Page](./puppeteer.page.md) > [setCookie](./puppeteer.page.setcookie.md)
|
|
|
|
## Page.setCookie() method
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
setCookie(...cookies: Protocol.Network.CookieParam[]): Promise<void>;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| cookies | Protocol.Network.CookieParam\[\] | |
|
|
|
|
<b>Returns:</b>
|
|
|
|
Promise<void>
|
|
|
|
## Example
|
|
|
|
|
|
```js
|
|
await page.setCookie(cookieObject1, cookieObject2);
|
|
|
|
```
|
|
|