playwright_post
Send an HTTP POST request with specified data, URL, and headers using Playwright. This tool enables browser automation for tasks like submitting forms or interacting with APIs in a web environment.
Instructions
Perform an HTTP POST request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headers | No | Additional headers to include in the request | |
token | No | Bearer token for authorization | |
url | Yes | URL to perform POST operation | |
value | Yes | Data to post in the body |
Input Schema (JSON Schema)
{
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"description": "Additional headers to include in the request",
"type": "object"
},
"token": {
"description": "Bearer token for authorization",
"type": "string"
},
"url": {
"description": "URL to perform POST operation",
"type": "string"
},
"value": {
"description": "Data to post in the body",
"type": "string"
}
},
"required": [
"url",
"value"
],
"type": "object"
}