browser_file_upload
Enables uploading one or multiple files in browser automation workflows using Playwright. Specify absolute file paths to handle single or bulk file uploads efficiently.
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"
}