DeleteCookiesRequest 接口
¥DeleteCookiesRequest interface
签名
¥Signature
export interface DeleteCookiesRequest
属性
¥Properties
属性 | 修饰符 | 类型 | 描述 | 默认 |
---|---|---|---|---|
domain |
| string | 如果指定,则仅删除具有确切域的 cookie。 | |
name | string | 要删除的 cookie 的名称。 | ||
partitionKey |
| string | 如果指定,则删除给定分区键中的 cookie。在 Chrome 中,partitionKey 与分区 cookie 所在的顶层站点匹配。在 Firefox 中,它与源原点 (https://w3c.github.io/webdriver-bidi/\#type-storage-PartitionKey) 匹配。 | |
path |
| string | 如果指定,则仅删除具有确切路径的 cookie。 | |
url |
| string | 如果指定,则删除具有给定名称且域和路径与提供的 URL 匹配的所有 cookie。否则,仅删除与当前页面域相关的 cookie。 |