Overview
This tool allows your AI coding assistant like cursor/roo code to:
- Record new test flows: Describe a user journey in natural language, and the agent will interact with the browser and record it as test for later. It will give any logical/console error and feedback to the coding agent
- Execute existing tests: Run previously recorded test scripts to perform regression testing, ensuring new code changes haven't broken existing functionality.
- Discover potential test steps: Crawl a website, analyze pages using vision and DOM structure, and ask an LLM to suggest relevant test steps for different pages.
Server Config
{
"mcpServers": {
"GroundNG-Web-Tester": {
"command": "uv",
"args": [
"--directory",
"path/to/cloned_repo",
"run",
"mcp_server.py"
]
}
}
}