browser_file_upload
Upload single or multiple files directly through a browser interface. Ideal for automating file uploads in web applications during testing with Playwright and Cloudflare integration.
Instructions
Upload one or multiple files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paths | Yes | The absolute paths to the files to upload. Can be a single file or multiple files. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"paths": {
"description": "The absolute paths to the files to upload. Can be a single file or multiple files.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"paths"
],
"type": "object"
}