Browser Testing MCP Server
Enables automated browser testing of web applications using Playwright, supporting user interactions, form submissions, console monitoring, network request inspection, and visual verification through screenshots.
README
Browser Testing MCP Server - Cursor AI Instructions
Setup Instructions
- Install Python dependencies:
pip install mcp playwright python-dotenv
playwright install chromium
-
Save the Python file as
browser_testing_mcp.py -
Make it executable:
chmod +x browser_testing_mcp.py
- Configure MCP in Cursor: Add to your MCP configuration file:
{
"mcpServers": {
"browser-testing": {
"command": "python",
"args": ["/full/path/to/browser_testing_mcp.py"]
}
}
}
Instructions for Cursor AI
You have access to a Browser Testing MCP server that allows you to control a real browser to test web applications. This is particularly useful for verifying that web apps you create are functioning correctly.
Available Tools
You can use these tools to interact with a browser:
Browser Management
launch_browser- Start a browser instance (set headless=false to see it)close_browser- Close the browser when donenavigate_to- Go to any URL
Interaction
click_element- Click any element by CSS selectortype_text- Type into input fieldsfill_form- Fill multiple form fields at onceevaluate_javascript- Execute custom JavaScript
Monitoring & Debugging
get_console_logs- See JavaScript errors and console outputget_network_requests- Monitor API calls and responsesget_page_metrics- Check performance metricstake_screenshot- Capture visual state
Verification
wait_for_selector- Wait for elements to appearcheck_element_state- Verify element states (visible, enabled, etc.)get_local_storage- Check stored dataget_cookies- Verify authentication cookiesget_page_content- Get HTML content
Testing Workflow Example
When testing a web application you've created, follow this pattern:
# 1. Launch browser in visible mode to see what's happening
launch_browser(headless=False, viewport_width=1280, viewport_height=720)
# 2. Navigate to the app
navigate_to(url="http://localhost:3000", wait_until="networkidle")
# 3. Test user registration/login
fill_form(fields=[
{"selector": "#email", "value": "test@example.com", "field_type": "text"},
{"selector": "#password", "value": "SecurePass123", "field_type": "text"},
{"selector": "#agree", "value": "true", "field_type": "checkbox"}
])
click_element(selector="#submit-button")
# 4. Wait for success
wait_for_selector(selector=".dashboard", state="visible", timeout=5000)
# 5. Check for errors
get_console_logs(log_type="error") # Check for JavaScript errors
# 6. Verify API calls worked
get_network_requests(method="POST", url_pattern="/api/auth")
# 7. Check authentication state
get_local_storage(key="authToken")
get_cookies(name="session")
# 8. Test navigation
click_element(selector="a[href='/profile']")
wait_for_selector(selector=".profile-page")
# 9. Verify content loaded
check_element_state(selector=".user-data", checks=["visible", "enabled"])
# 10. Take screenshot for visual verification
take_screenshot(full_page=True)
# 11. Get performance metrics
get_page_metrics()
# 12. Close when done
close_browser()
Common Testing Scenarios
Test Form Validation
# Try submitting empty form
click_element(selector="#submit")
wait_for_selector(selector=".error-message")
get_page_content(selector=".error-message")
Test API Error Handling
# Check how app handles API failures
navigate_to(url="http://localhost:3000/users")
get_network_requests(url_pattern="/api/users")
# Check if error state is displayed properly
check_element_state(selector=".error-banner", checks=["visible"])
Test Authentication Flow
# Test login -> dashboard -> logout
fill_form(fields=[
{"selector": "#username", "value": "testuser"},
{"selector": "#password", "value": "password123"}
])
click_element(selector="#login-btn")
wait_for_selector(selector=".dashboard")
get_local_storage(key="auth_token") # Verify token stored
click_element(selector="#logout")
wait_for_selector(selector=".login-page")
get_local_storage(key="auth_token") # Verify token cleared
Test Responsive Design
# Test mobile view
launch_browser(headless=False, viewport_width=375, viewport_height=667)
navigate_to(url="http://localhost:3000")
check_element_state(selector=".mobile-menu", checks=["visible"])
check_element_state(selector=".desktop-menu", checks=["hidden"])
Debugging Tips
- Always check console logs after interactions to catch JavaScript errors
- Monitor network requests to ensure APIs are called correctly
- Use screenshots to visually verify UI state
- Check localStorage/cookies to verify data persistence
- Use wait_for_selector before interacting with dynamically loaded content
- Run with headless=False to see what's happening during debugging
Error Handling
If you encounter errors:
- "Browser not launched" - Call
launch_browserfirst - "Element not found" - Check selector is correct, use
wait_for_selectorfirst - "Timeout" - Increase timeout value or check if element actually appears
- Network issues - Check if the app is running on the expected port
Best Practices
- Always close the browser when done testing
- Use descriptive selectors (IDs or data-testid attributes)
- Wait for elements before interacting with them
- Check both success and error cases
- Verify API calls match expected patterns
- Take screenshots at key points for visual verification
- Check performance metrics to ensure app loads efficiently
This tool allows you to thoroughly test any web application you create, ensuring all features work correctly before considering the task complete.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。