browser_delete_cookie
Remove specific cookies from the browser during automated web testing and interaction sessions to manage user sessions and privacy settings.
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)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Name of the cookie to delete",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}