feat: add documentation (#8593)

This commit is contained in:
jrandolf
2022-07-01 13:52:39 +02:00
committed by GitHub
parent 51ae338acd
commit 066f440ba7
781 changed files with 55939 additions and 7515 deletions

View 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&lt;void&gt;
## Example
```ts
await page.setCookie(cookieObject1, cookieObject2);
```