playwright_put
Execute an HTTP PUT request to send data to a specified URL, enabling updates or modifications to web resources within a browser automation environment.
Instructions
Perform an HTTP PUT request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL to perform PUT operation | |
value | Yes | Data to PUT in the body |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "URL to perform PUT operation",
"type": "string"
},
"value": {
"description": "Data to PUT in the body",
"type": "string"
}
},
"required": [
"url",
"value"
],
"type": "object"
}