mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
feat: add documentation (#8593)
This commit is contained in:
29
docs/api/puppeteer.page.setcookie.md
Normal file
29
docs/api/puppeteer.page.setcookie.md
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
sidebar_label: Page.setCookie
|
||||
---
|
||||
|
||||
# Page.setCookie() method
|
||||
|
||||
**Signature:**
|
||||
|
||||
```typescript
|
||||
class Page {
|
||||
setCookie(...cookies: Protocol.Network.CookieParam[]): Promise<void>;
|
||||
}
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --------- | -------------------------------- | ----------- |
|
||||
| cookies | Protocol.Network.CookieParam\[\] | |
|
||||
|
||||
**Returns:**
|
||||
|
||||
Promise<void>
|
||||
|
||||
## Example
|
||||
|
||||
```ts
|
||||
await page.setCookie(cookieObject1, cookieObject2);
|
||||
```
|
||||
Reference in New Issue
Block a user