playwright_delete
Execute an HTTP DELETE request programmatically to remove data or resources at a specified URL using browser automation via the Playwright framework and Chrome DevTools Protocol.
Instructions
Perform an HTTP DELETE request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to perform DELETE operation |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to perform DELETE operation",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}