browser_delete_cookie
Remove specific cookies from the browser to manage user sessions, clear tracking data, or maintain privacy during automated web testing and browsing sessions.
Instructions
Delete a cookie from the browser
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the cookie to delete |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the cookie to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}