bump
This commit is contained in:
@@ -164,19 +164,27 @@ web_interact_cremotemcp:
|
||||
selector: "form"
|
||||
```
|
||||
|
||||
### Upload File
|
||||
### Upload File (Automatic Transfer)
|
||||
```yaml
|
||||
# Recommended: Pass local file path directly - auto-transfers to container
|
||||
web_interact_cremotemcp:
|
||||
action: "upload"
|
||||
selector: "input[type='file']"
|
||||
value: "/path/to/file.pdf"
|
||||
value: "/home/user/document.pdf" # Local path - auto-transferred!
|
||||
```
|
||||
|
||||
### Upload File to Container
|
||||
### Upload File to Container (Manual)
|
||||
```yaml
|
||||
# Optional: Pre-stage file in container if needed
|
||||
file_upload_cremotemcp:
|
||||
local_path: "/home/user/document.pdf"
|
||||
container_path: "/tmp/upload.pdf"
|
||||
|
||||
# Then use container path
|
||||
web_interact_cremotemcp:
|
||||
action: "upload"
|
||||
selector: "input[type='file']"
|
||||
value: "/tmp/upload.pdf"
|
||||
```
|
||||
|
||||
### Download File from Container
|
||||
|
||||
Reference in New Issue
Block a user