browser_get_cookie_by_name
Retrieve specific browser cookies by name to access authentication tokens, session data, or user preferences during web automation and testing workflows.
Instructions
Get a cookie by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the cookie to get |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the cookie to get",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}