Added Hover and Select Capabliity

This commit is contained in:
ExecuteAutomation
2024-11-27 14:13:08 +13:00
parent def7549a27
commit 238587042d
2 changed files with 89 additions and 5 deletions

View File

@@ -22,12 +22,22 @@ A Model Context Protocol server that provides browser automation capabilities us
- Click elements on the page
- Input: `selector` (string): CSS selector for element to click
- **puppeteer_hover**
- Hover elements on the page
- Input: `selector` (string): CSS selector for element to hover
- **puppeteer_fill**
- Fill out input fields
- Inputs:
- `selector` (string): CSS selector for input field
- `value` (string): Value to fill
- **puppeteer_select**
- Select an element with SELECT tag
- Inputs:
- `selector` (string): CSS selector for element to select
- `value` (string): Value to select
- **puppeteer_evaluate**
- Execute JavaScript in the browser console
- Input: `script` (string): JavaScript code to execute
@@ -64,6 +74,7 @@ Here's the Claude Desktop configuration to use the Puppeter server:
}
}
}
```
## License