console
This commit is contained in:
@@ -7,6 +7,10 @@
|
||||
- `web_screenshot_cremotemcp` - Take screenshots
|
||||
- `web_manage_tabs_cremotemcp` - Manage browser tabs
|
||||
- `web_iframe_cremotemcp` - Switch iframe context
|
||||
- `file_upload_cremotemcp` - Upload files to container
|
||||
- `file_download_cremotemcp` - Download files from container
|
||||
- `console_logs_cremotemcp` - Get browser console logs
|
||||
- `console_command_cremotemcp` - Execute console commands
|
||||
|
||||
## Essential Parameters
|
||||
|
||||
@@ -64,6 +68,33 @@ web_interact_cremotemcp:
|
||||
value: "/path/to/file.pdf"
|
||||
```
|
||||
|
||||
### Upload File to Container
|
||||
```yaml
|
||||
file_upload_cremotemcp:
|
||||
local_path: "/home/user/document.pdf"
|
||||
container_path: "/tmp/upload.pdf"
|
||||
```
|
||||
|
||||
### Download File from Container
|
||||
```yaml
|
||||
file_download_cremotemcp:
|
||||
container_path: "/tmp/downloaded.pdf"
|
||||
local_path: "/home/user/Downloads/file.pdf"
|
||||
```
|
||||
|
||||
### Get Console Logs
|
||||
```yaml
|
||||
console_logs_cremotemcp:
|
||||
clear: true
|
||||
```
|
||||
|
||||
### Execute Console Command
|
||||
```yaml
|
||||
console_command_cremotemcp:
|
||||
command: "document.title"
|
||||
timeout: 10
|
||||
```
|
||||
|
||||
## Best CSS Selectors
|
||||
|
||||
✅ **Good:**
|
||||
|
||||
Reference in New Issue
Block a user