This commit is contained in:
Josh at WLTechBlog
2025-10-16 10:54:37 -05:00
parent ccd8c77a3e
commit 4d55acca95
45 changed files with 8499 additions and 2416 deletions

View File

@@ -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