22 lines
1.1 KiB
Markdown
22 lines
1.1 KiB
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Network](./puppeteer.protocol.network.md) > [DeleteCookiesRequest](./puppeteer.protocol.network.deletecookiesrequest.md)
|
||
|
|
||
|
## Protocol.Network.DeleteCookiesRequest interface
|
||
|
|
||
|
<b>Signature:</b>
|
||
|
|
||
|
```typescript
|
||
|
export interface DeleteCookiesRequest
|
||
|
```
|
||
|
|
||
|
## Properties
|
||
|
|
||
|
| Property | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| [domain](./puppeteer.protocol.network.deletecookiesrequest.domain.md) | string | If specified, deletes only cookies with the exact domain. |
|
||
|
| [name](./puppeteer.protocol.network.deletecookiesrequest.name.md) | string | Name of the cookies to remove. |
|
||
|
| [path](./puppeteer.protocol.network.deletecookiesrequest.path.md) | string | If specified, deletes only cookies with the exact path. |
|
||
|
| [url](./puppeteer.protocol.network.deletecookiesrequest.url.md) | string | If specified, deletes all the cookies with the given name where domain and path match provided URL. |
|
||
|
|