Metadata-Version: 2.3
Name: claude-webpilot
Version: 1.3.0
Summary: Professional Web Automation and Testing Framework with 60+ MCP Tools, Cloud Platform Support, and Performance Optimization
License: MIT
Keywords: web automation,testing,selenium,playwright,devops,ci/cd,machine learning,test generation,cloud testing,accessibility testing,performance testing,mcp,model context protocol,ai assistant integration
Author: WebPilot Contributors
Maintainer: WebPilot Team
Maintainer-email: webpilot@example.com
Requires-Python: >=3.10,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Provides-Extra: all
Provides-Extra: vision
Requires-Dist: aiohttp (>=3.12.0,<4.0.0)
Requires-Dist: beautifulsoup4 (>=4.13.0,<5.0.0)
Requires-Dist: click (>=8.1.0,<9.0.0)
Requires-Dist: numpy (>=1.26.0) ; extra == "vision" or extra == "all"
Requires-Dist: opencv-python (>=4.12.0,<5.0.0) ; extra == "vision" or extra == "all"
Requires-Dist: pillow (>=10.0.0,<11.0.0)
Requires-Dist: playwright (>=1.55.0,<2.0.0)
Requires-Dist: pytesseract (>=0.3.10,<0.4.0) ; extra == "vision" or extra == "all"
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
Requires-Dist: requests (>=2.31.0,<3.0.0)
Requires-Dist: scikit-learn (>=1.7.2,<2.0.0)
Requires-Dist: selenium (>=4.29.0,<5.0.0)
Project-URL: Documentation, https://luminous-dynamics.github.io/webpilot/
Project-URL: Homepage, https://github.com/Luminous-Dynamics/webpilot
Project-URL: Repository, https://github.com/Luminous-Dynamics/webpilot
Description-Content-Type: text/markdown

# 🚁 WebPilot

[![Python Version](https://img.shields.io/badge/python-3.9%2B-blue)](https://www.python.org/downloads/)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Documentation Status](https://readthedocs.org/projects/webpilot/badge/?version=latest)](https://webpilot.readthedocs.io/en/latest/?badge=latest)
[![Coverage Status](https://coveralls.io/repos/github/yourusername/webpilot/badge.svg?branch=main)](https://coveralls.io/github/yourusername/webpilot?branch=main)

> **Professional Web Automation Framework with 60+ MCP Tools, Cloud Support, and AI Integration**

WebPilot v1.3.0 is a comprehensive web automation framework that combines browser automation, intelligent test generation, and seamless CI/CD integration. Now with **60+ MCP tools**, intelligent error handling, cloud platform support, and performance optimization.

## 🎉 What's New in v1.3.0

- **🛠️ 60+ MCP Tools**: Expanded from 27 to 60+ tools for comprehensive automation
- **🛡️ Intelligent Error Handling**: Context-aware error recovery with actionable suggestions
- **☁️ Cloud Platform Support**: Native integration with BrowserStack, Sauce Labs, and LambdaTest
- **⚡ Performance Optimization**: Smart caching, parallel execution, and batch operations
- **📊 Enhanced Reporting**: Performance metrics and cache statistics

## ✨ Key Features

- 🌐 **Multi-Backend Support**: Selenium, Playwright, and async HTTP operations
- 🤖 **MCP Integration**: Full Model Context Protocol with **60+ tools** for AI assistants
- 🧠 **ML-Powered Test Generation**: Automatically learn and generate tests from user interactions
- ☁️ **Cloud Testing**: Native support for BrowserStack, Sauce Labs, LambdaTest
- 🚀 **CI/CD Ready**: Pre-built templates for GitHub Actions, GitLab, Jenkins, and more
- 📊 **Advanced Reporting**: Beautiful HTML reports with performance metrics
- 🔍 **Smart Waiting**: Intelligent wait strategies that adapt to your application
- ♿ **Accessibility Testing**: Built-in WCAG compliance checking
- 🎯 **Visual Testing**: Screenshot comparison and OCR capabilities
- ⚡ **Performance Testing**: Lighthouse integration and smart caching
- 🔒 **Security Scanning**: Security audit capabilities with recovery suggestions

## 🚀 Quick Start

### Installation

```bash
# Basic installation
pip install claude-webpilot

# With all features
pip install claude-webpilot[all]

# Specific features
pip install claude-webpilot[selenium]   # Selenium backend
pip install claude-webpilot[vision]     # OCR and visual testing
pip install claude-webpilot[ml]         # Machine learning features
pip install claude-webpilot[cloud]      # Cloud testing platforms
```

### Basic Usage

```python
from webpilot import WebPilot

# Simple browser automation
with WebPilot() as pilot:
    pilot.start("https://example.com")
    pilot.click(text="Login")
    pilot.type_text("username", selector="#email")
    pilot.type_text("password", selector="#password")
    pilot.click(selector="button[type='submit']")
    pilot.screenshot("login_success.png")
```

### Intelligent Test Generation

```python
from webpilot.ml import IntelligentTestGenerator

# Learn from manual testing
generator = IntelligentTestGenerator()
patterns = generator.learn_from_session("manual_test_session.json")

# Generate test code
generator.export_tests("generated_tests/", language="python")
```

### Cloud Testing

```python
from webpilot.cloud import CloudWebPilot, CloudConfig, CloudProvider

config = CloudConfig(
    provider=CloudProvider.BROWSERSTACK,
    username="your_username",
    access_key="your_key",
    project_name="My Test Suite"
)

with CloudWebPilot(config, browser="chrome", os_name="Windows", os_version="11") as pilot:
    pilot.start("https://myapp.com")
    # Your test steps here
    pilot.mark_test_status(passed=True)
```

## 🤖 MCP Integration - 60+ Tools for AI Assistants!

WebPilot v1.3.0 provides comprehensive Model Context Protocol support with **60+ tools** organized into 8 categories:

### Tool Categories & Counts

| Category | Tools | Examples |
|----------|-------|----------|
| **Core** | 9 | `webpilot_start`, `webpilot_navigate`, `webpilot_click`, `webpilot_type` |
| **Forms** | 5 | `webpilot_fill_form_auto`, `webpilot_upload_file`, `webpilot_validate_form` |
| **Navigation** | 5 | `webpilot_open_new_tab`, `webpilot_switch_tab`, `webpilot_handle_alert` |
| **Data** | 8 | `webpilot_extract_emails`, `webpilot_save_as_pdf`, `webpilot_extract_meta_tags` |
| **Testing** | 8 | `webpilot_check_broken_links`, `webpilot_lighthouse_audit`, `webpilot_check_seo` |
| **Interaction** | 6 | `webpilot_drag_and_drop`, `webpilot_right_click`, `webpilot_press_key` |
| **Automation** | 5 | `webpilot_login`, `webpilot_search_and_filter`, `webpilot_monitor_changes` |
| **Cloud** | 3 | `webpilot_browserstack_session`, `webpilot_sauce_labs_session` |

### New v1.3.0 Enhancements

```python
from webpilot.mcp.server import WebPilotMCPServer

server = WebPilotMCPServer()

# 🛡️ Intelligent Error Handling
result = await server.handle_tool_call("webpilot_click", {"selector": ".missing"})
# Returns helpful recovery suggestions if element not found

# ⚡ Performance Optimization
server.optimize_for_scenario("speed")  # Enable caching & parallel execution
perf_report = server.get_performance_report()  # View cache hit rates

# ☁️ Cloud Platform Support
platforms = server.get_cloud_platforms()  # List available cloud providers

# 🚄 Batch Operations
results = await server.batch_execute_tools([
    {"tool": "webpilot_navigate", "params": {"url": "https://example.com"}},
    {"tool": "webpilot_screenshot", "params": {"name": "page1"}},
    {"tool": "webpilot_extract", "params": {}}
])
```

### For Claude Desktop

Add to your MCP configuration:
```json
{
  "mcpServers": {
    "webpilot": {
      "command": "python",
      "args": ["-m", "webpilot.mcp.run_server"]
    }
  }
}
```

See [MCP Integration Guide](docs/mcp_integration.md) for full details.

## 📚 Documentation

### Examples

Check the [`examples/`](examples/) directory for complete examples:

- [Basic Automation](examples/01_basic_automation.py) - Getting started with WebPilot
- [Test Generation](examples/02_test_generation.py) - ML-powered test creation
- [Cloud Testing](examples/03_cloud_testing.py) - Cross-browser testing
- [CI/CD Integration](examples/04_cicd_integration.py) - Pipeline setup
- [Performance Testing](examples/05_performance_testing.py) - Lighthouse and metrics
- [Visual Testing](examples/06_visual_testing.py) - Screenshot comparison
- [Accessibility Testing](examples/07_accessibility_testing.py) - WCAG compliance

### Guides

- [Installation Guide](docs/installation.md)
- [Configuration](docs/configuration.md)
- [Best Practices](docs/best_practices.md)
- [API Reference](docs/api_reference.md)
- [Troubleshooting](docs/troubleshooting.md)

## 🏗️ Architecture

```
webpilot/
├── core/           # Core framework and session management
├── backends/       # Browser automation backends (Selenium, Playwright, Async)
├── ml/            # Machine learning test generation
├── cloud/         # Cloud testing platform integrations
├── features/      # Advanced features (vision, DevOps, accessibility)
├── utils/         # Utilities (smart wait, reporting, helpers)
├── monitoring/    # Real-time monitoring and dashboards
└── cicd/          # CI/CD template generation
```

## 🧪 Testing

```bash
# Run tests
pytest tests/

# With coverage
pytest tests/ --cov=webpilot --cov-report=html

# Run specific test categories
pytest tests/unit/
pytest tests/integration/
pytest tests/e2e/
```

## 🤝 Contributing

We welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details.

### Development Setup

```bash
# Clone the repository
git clone https://github.com/yourusername/webpilot.git
cd webpilot

# Install in development mode
pip install -e ".[dev]"

# Install pre-commit hooks
pre-commit install

# Run code formatters
black src/ tests/
isort src/ tests/

# Run linters
flake8 src/ tests/
mypy src/
```

### Code Style

- We use [Black](https://github.com/psf/black) for code formatting
- We use [isort](https://github.com/PyCQA/isort) for import sorting
- We follow [PEP 8](https://www.python.org/dev/peps/pep-0008/) style guide
- All code must have type hints (PEP 484)
- All public functions must have docstrings (Google style)

## 📊 Performance

WebPilot is designed for speed and efficiency:

- **Smart Wait**: Reduces test time by up to 40% with intelligent waiting
- **Parallel Execution**: Run tests concurrently across multiple browsers
- **Caching**: Session and element caching for faster execution
- **Lazy Loading**: Load features only when needed

## 🛡️ Security

WebPilot takes security seriously:

- No credentials stored in code
- Environment variable support for sensitive data
- Secure cloud provider integrations
- Regular dependency updates

## 📝 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

## 🙏 Acknowledgments

- Selenium WebDriver team for the excellent browser automation
- Playwright team for modern browser automation
- scikit-learn team for ML capabilities
- The open source community for continuous inspiration

## 🗺️ Roadmap

- [ ] Docker container support
- [ ] Kubernetes integration for distributed testing
- [ ] Enhanced ML models for test generation
- [ ] GraphQL API testing support
- [ ] Mobile browser testing
- [ ] Advanced performance profiling
- [ ] Integration with more cloud providers

## 💬 Support

- **Documentation**: [https://webpilot.readthedocs.io](https://webpilot.readthedocs.io)
- **Issues**: [GitHub Issues](https://github.com/yourusername/webpilot/issues)
- **Discussions**: [GitHub Discussions](https://github.com/yourusername/webpilot/discussions)
- **Email**: webpilot@example.com

## 🌟 Star History

[![Star History Chart](https://api.star-history.com/svg?repos=yourusername/webpilot&type=Date)](https://star-history.com/#yourusername/webpilot&Date)

---

Made with ❤️ by the WebPilot Team
