Skip to main content

A comprehensive web automation and DOM parsing platform with AI-powered agents

Project description

CeSail

A comprehensive web automation and DOM parsing platform with AI-powered agents.

Project Overview

CeSail enables AI agents to interact with the web through a comprehensive web automation and DOM parsing platform. It transforms complex web pages into structured, agent-friendly data and provides complete web interaction capabilities. The platform offers APIs that retrieve parsed data from web pages, transform it into a format that's easy for AI agents to understand, and execute actions like clicking, typing, navigating, and scrolling - enabling full end-to-end web automation workflows.

What CeSail Does

CeSail bridges the gap between raw web content and AI agents by:

โš ๏ธ Version Compatibility Note: CeSail automatically manages compatible versions of fastmcp and mcp packages. If you encounter import errors related to McpError, ensure you're using the latest version of CeSail.

  1. ๐ŸŒ Web Page Analysis: Extracts and analyzes DOM elements, forms, buttons, links, and interactive components
  2. ๐Ÿง  Agent-Friendly Transformation: Converts complex HTML structures into structured data with clear semantics
  3. ๐ŸŽฏ Actionable Intelligence: Identifies clickable elements, form fields, and navigation options with context
  4. ๐Ÿ“Š Structured Output: Provides clean, JSON-like data structures that agents can easily parse and understand
  5. ๐Ÿ” Context Preservation: Maintains relationships between elements and their functional purposes
  6. ๐Ÿ“ธ Visual Overlays: Generates screenshots with overlays highlighting parsed action items and interactive elements

Quick Start

Install from PyPI (Recommended)

The easiest way to get started with CeSail is to install it from PyPI:

# Install CeSail
pip install cesail

# Playwright browsers are installed automatically during package installation
# If you encounter any issues, you can manually install them:
# playwright install

Simple Example

Here's a quick example that demonstrates CeSail's core functionality:

import asyncio
from cesail import DOMParser, Action, ActionType

async def quick_demo():
    """Quick demonstration of CeSail's web automation capabilities."""
    async with DOMParser(headless=False) as parser:
        # Navigate to a website
        action = Action(
            type=ActionType.NAVIGATE,
            metadata={"url": "https://www.example.com"}
        )
        await parser._action_executor.execute_action(action)
        
        # Analyze the page and get structured data
        parsed_page = await parser.analyze_page()
        print(f"Found {len(parsed_page.important_elements.elements)} interactive elements")
        
        # Take a screenshot with overlays
        await parser.take_screenshot("demo_screenshot.png")
        
        # Show available actions
        print("Available actions:")
        for element in parsed_page.important_elements.elements[:3]:
            print(f"  - {element.type}: {element.text}")

# Run the demo
asyncio.run(quick_demo())

MCP (Model Context Protocol) Integration

CeSail provides a FastMCP server that enables AI assistants like Cursor to directly interact with web pages through standardized APIs. This allows you to give natural language commands to your AI assistant and have it execute web automation tasks.

Setting up MCP with Cursor

  1. Install CeSail MCP Server:

    pip install cesail fastmcp
    
  2. Configure MCP Settings:

    • Open Cursor
    • Go to Settings โ†’ Extensions โ†’ MCP
    • Add a new server configuration:
    • Note: Make sure to use the path to your Python executable. You can find it by running which python or which python3 in your terminal.
    {
      "mcpServers": {
        "cesail": {
          "command": "python3",
          "args": ["-m", "cesail_mcp.fastmcp_server"],
          "env": {
            "PYTHONUNBUFFERED": "1"
          },
          "description": "CeSail MCP Server for comprehensive web automation and DOM parsing",
          "capabilities": {
            "tools": {
              "listChanged": true
            }
          }
        }
      }
    }
    

    Note: This configuration has been tested with Cursor. For best performance, users should disable the get_screenshot capability as Cursor screenshots can take a while to process. To disable it, go to Cursor Settings โ†’ Tools & Integrations โ†’ MCP and disable the get_screenshot capability for the CeSail server. This should also work with other MCP-compatible agents, though it hasn't been tested with them.

    For more help setting up Cursor MCP, see: https://docs.cursor.com/en/context/mcp

  3. Test the FastMCP Server:

    python3 -m cesail.mcp.fastmcp_server
    

    Run this command to ensure the server launches properly. You should see output indicating the server is starting up.

  4. Use in Cursor: Now you can ask Cursor to perform web automation tasks:

    "Using cesail, Navigate to example.com and do a certain task"
    "Using cesail, ..."
    

Why Agents Need This

Traditional web scraping provides raw HTML, which is difficult for AI agents to interpret. CeSail solves this by:

  • Semantic Understanding: Identifies what each element does (button, form, link, etc.)
  • Action Mapping: Maps elements to executable actions (click, type, navigate)
  • Context Enrichment: Adds metadata about element purpose and relationships
  • Structured Data: Outputs clean, predictable data structures
  • Visual Context: Combines DOM analysis with visual information via screenshots and overlays highlighting actionable elements
  • Highly Configurable: Customizable settings for different use cases and requirements

This transformation makes it possible for AI agents to:

  • Understand page structure at a glance
  • Identify actionable elements quickly
  • Execute precise interactions
  • Adapt to different page layouts
  • Make intelligent decisions about next actions

Architecture

โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”    โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚     Cursor      โ”‚    โ”‚   MCP Server    โ”‚    โ”‚  DOM Parser     โ”‚
โ”‚   (AI Agent)    โ”‚โ—„โ”€โ”€โ–บโ”‚   (Python)      โ”‚โ—„โ”€โ”€โ–บโ”‚  (Python)       โ”‚
โ”‚                 โ”‚    โ”‚                 โ”‚    โ”‚                 โ”‚
โ”‚ โ€ข Natural Lang. โ”‚    โ”‚ โ€ข FastMCP APIs  โ”‚    โ”‚ โ€ข Page Analyzer โ”‚
โ”‚ โ€ข Task Planning โ”‚    โ”‚ โ€ข Web Automationโ”‚    โ”‚ โ€ข Action Exec.  โ”‚
โ”‚ โ€ข Execution     โ”‚    โ”‚ โ€ข Screenshots   โ”‚    โ”‚ โ€ข Idle Watcher  โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜    โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                                                        โ”‚
                                                        โ”‚
                                        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
                                        โ”‚   Web Browser   โ”‚
                                        โ”‚  (Playwright)   โ”‚
                                        โ”‚                 โ”‚
                                        โ”‚ โ€ข Page Control  โ”‚
                                        โ”‚ โ€ข DOM Access    โ”‚
                                        โ”‚ โ€ข Screenshots   โ”‚
                                        โ”‚ โ€ข Actions       โ”‚
                                        โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
                                                        โ”‚
                                                        โ”‚
                                        โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
                                        โ”‚  JavaScript     โ”‚
                                        โ”‚  Layer          โ”‚
                                        โ”‚                 โ”‚
                                        โ”‚ โ€ข Element Ext.  โ”‚
                                        โ”‚ โ€ข Selector Gen. โ”‚
                                        โ”‚ โ€ข Text Analysis โ”‚
                                        โ”‚ โ€ข Action Ext.   โ”‚
                                        โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

Key Architecture Points:

  • MCP Server: Connects to DOM Parser for web automation APIs
  • DOM Parser: Orchestrates page analysis, action execution, and idle watching
  • Web Browser: Connected to DOM Parser for page control and actions
  • JavaScript Layer: Injected into web browser for DOM parsing and element extraction
  • Actions: Executed by Playwright, parsing done manually through JavaScript

Components

1. DOM Parser JavaScript Layer (dom_parser/src/js/)

Core DOM parsing engine that transforms raw HTML into structured, agent-friendly data.

Language: JavaScript
Features:

  • Element Extraction: Identifies and categorizes interactive elements (buttons, forms, links)
  • Semantic Analysis: Understands element purpose and context
  • Action Mapping: Maps elements to executable actions (click, type, navigate)
  • Text Scoring: Prioritizes important text content for agents
  • Selector Generation: Creates reliable CSS selectors for element targeting
  • Performance Optimization: Caching and monitoring for speed
  • ARIA Support: Accessibility attribute analysis
  • Visual Context: Combines DOM data with visual information
  • Processing Pipeline: Multi-stage element processing and filtering

Key Components:

  • index.js: Main entry point and public API
  • action-extraction.js: Extracts actionable elements and metadata
  • filter-elements.js: Filters and groups elements by importance
  • scoring.js: Scores elements based on visibility and interactivity
  • selector-extraction.js: Generates reliable CSS selectors
  • visualizer.js: Visual debugging and element highlighting
  • cache-manager.js: Performance optimization and caching

Data Transformation Example:

// Raw HTML input
<button class="btn-primary" onclick="submit()">Submit Form</button>
<input type="text" placeholder="Enter email" id="email" />

// CeSail transforms to agent-friendly JSON
{
  "type": "BUTTON",
  "selector": "button.btn-primary",
  "text": "Submit Form",
  "action": "CLICK",
  "importance": 0.9,
  "context": "form submission",
  "metadata": {
    "aria-label": null,
    "disabled": false,
    "visible": true
  }
}

Documentation: See dom_parser/src/js/README.md

2. DOM Parser Python Layer (dom_parser/src/py/)

Orchestration layer that manages browser interactions and provides high-level APIs.

Language: Python
Features:

  • Page Analysis: Comprehensive page structure analysis and element extraction
  • Action Execution: Executes clicks, typing, navigation, and other web actions
  • Idle Watching: Monitors page state changes and waits for stability
  • Screenshot Integration: Captures and analyzes visual page content
  • Configuration Management: Flexible configuration for different use cases
  • Session Management: Maintains browser state across interactions
  • Error Handling: Robust error recovery and retry logic

Key Components:

  • dom_parser.py: Main interface for DOM parsing and interaction
  • page_analyzer.py: Analyzes page structure and extracts actionable elements
  • action_executor.py: Executes web actions through Playwright
  • idle_watcher.py: Monitors page state and waits for stability
  • screenshot.py: Captures and processes page screenshots
  • types.py: Data structures and type definitions
  • config.py: Configuration management and validation
  • actions_plugins/: Modular action implementations (navigation, interaction, input, system)

Integration Example:

async with DOMParser() as parser:
    # Navigate to page
    await parser.navigate("https://example.com")
    
    # Analyze page structure
    parsed_page = await parser.analyze_page()
    
    # Execute actions
    await parser.click("button.btn-primary")
    await parser.type("input#email", "user@example.com")

Documentation: See dom_parser/src/py/README.md

2. MCP Server (mcp/)

FastMCP server that provides standardized APIs for agents to interact with transformed web data.

Language: Python
Features:

  • Structured APIs: Clean, predictable endpoints for web automation
  • Action Execution: Execute clicks, typing, navigation based on transformed data
  • Page Analysis: Get structured page information in agent-friendly format
  • Screenshot Integration: Visual context combined with structured data
  • Session Management: Maintain state across interactions
  • Error Handling: Robust retry logic and error recovery

Agent-Friendly API Example:

# Agent receives structured data from CeSail
parsed_page = await parser.analyze_page()

# Get the actions data (this is what agents typically work with)
actions = parsed_page.get_actions()

# Example actions data structure
actions_data = [
  {
    "type": "LINK",
    "selector": "2",
    "importantText": "Vintage vibesCreate your weekend moodboard | Vinta | /today/best/create-your-weekend-moodboard/128099/"
  },
  {
    "type": "LINK", 
    "selector": "3",
    "importantText": "Summer hobbiesTry bead embroidery | Summer hobbies | /today/best/try-bead-embroidery/128240/"
  },
  {
    "type": "SELECT",
    "selector": "5", 
    "importantText": "search-box-input | combobox | Search | Search"
  },
  {
    "type": "BUTTON",
    "selector": "8",
    "importantText": "vertical-nav-more-options-button | More options | More options"
  },
  {
    "type": "BUTTON",
    "selector": "10",
    "importantText": "Sign up"
  }
  ]
 

**Documentation**: See [dom_parser/src/py/README.md](dom_parser/src/py/README.md) for more details about the parsed page data structure.

Usage: python3 mcp/fastmcp_server.py

3. Simple Agent (simple_agent/) - WIP

AI-powered web automation agent using LLM for task breakdown and execution.

Language: Python
Features:

  • Natural language task processing
  • Automated task breakdown and planning
  • LLM-powered decision making
  • Visual analysis with screenshots
  • Interactive execution monitoring

Documentation: See simple_agent/README.md for more details.

Usage: python3 simple_agent/simple_agent.py

Testing

CeSail includes comprehensive test suites to validate functionality and demonstrate capabilities.

Test Categories

  • Playground Tests - Integration tests with real websites (Google, Amazon, YouTube, Pinterest, etc.)
  • Unit Tests - Individual component testing
  • Replay Tests - Regression testing with golden values

Quick Start

# Activate virtual environment
source venv/bin/activate

# Set PYTHONPATH
export PYTHONPATH=/Users/rachitapradeep/CeSail:$PYTHONPATH

# Run playground tests (great way to see CeSail in action!)
pytest dom_parser/tests/playground/test_page_analyzer_integration_pinterest.py -v -s

# Run all tests
pytest dom_parser/tests/ -v

Playground Tests

The playground tests are an excellent way to see CeSail navigate through real websites:

  • Google Search: Navigate and search functionality
  • Amazon: Product browsing and search
  • YouTube: Video navigation and interaction
  • Pinterest: Image browsing and pinning
  • Airbnb: Property search and filtering
  • Google Flights: Flight search and booking flow

These tests demonstrate CeSail's ability to:

  • Extract interactive elements from complex websites
  • Navigate through multi-step workflows
  • Handle dynamic content and AJAX loading
  • Generate screenshots with bounding boxes
  • Process structured data for AI agents

Documentation: See dom_parser/tests/README.md for complete testing guide and examples.

Development Installation

For development or advanced usage:

Prerequisites:

  • Python: 3.9 or higher
  • Node.js: 14 or higher (for DOM Parser development)
  • OpenAI API Key: Required for Simple Agent
  • Git: For cloning the repository

Installation:

  1. Clone the repository:

    git clone https://github.com/AkilaJay/cesail.git
    cd cesail
    
  2. Set up Python environment:

    python3 -m venv venv
    source venv/bin/activate  # On Windows: venv\Scripts\activate
    pip install -e .
    
  3. Set up DOM Parser (optional):

    cd dom_parser
    npm install
    npm run build
    cd ..
    
  4. Configure environment (for Simple Agent):

    # Create .env file in simple_agent/ directory
    echo "OPENAI_API_KEY=your_openai_api_key_here" > simple_agent/.env
    
  5. Playwright browsers are installed automatically during package installation. If you encounter any issues, you can manually install them:

    playwright install
    

Troubleshooting

Common Issues

1. Import Errors

Problem: ModuleNotFoundError: No module named 'dom_parser' Solution: Ensure you're in the correct directory and virtual environment is activated

2. Playwright Browser Issues

Problem: Browser not found or crashes Solution: Reinstall Playwright browsers:

playwright install

3. OpenAI API Errors

Problem: API key invalid or rate limited Solution: Check your API key and usage limits in the OpenAI dashboard

4. Screenshot Failures

Problem: Screenshots fail with "Target page closed" error Solution: Add proper error handling and retry logic

API Reference

For detailed API documentation, see the component-specific README files:

DOM Parser APIs

MCP Server API

  • FastMCP Integration: See the MCP server documentation for standardized web automation APIs
  • Documentation: See cesail_mcp/README.md for complete API reference and usage examples

Simple Agent API (WIP)

  • Natural Language Processing: Process user input and execute web automation tasks
  • LLM Integration: AI-powered task breakdown and execution
  • Documentation: See simple_agent/README.md for current API details

Contributing

We welcome contributions! Here's how to get started:

Development Setup

  1. Fork the repository
  2. Create a feature branch:
    git checkout -b feature/your-feature-name
    
  3. Make your changes
  4. Add tests for new functionality
  5. Run tests to ensure everything works
  6. Submit a pull request

Code Style

  • Python: Follow PEP 8, use Black for formatting
  • JavaScript: Follow ESLint rules, use Prettier for formatting
  • Documentation: Update README files for new features

Testing

  • Write unit tests for new functions
  • Add integration tests for new features
  • Ensure all existing tests pass

Project Structure

cesail/
โ”œโ”€โ”€ dom_parser/              # JavaScript DOM parser
โ”‚   โ”œโ”€โ”€ src/                # Source code
โ”‚   โ”œโ”€โ”€ dist/               # Built files
โ”‚   โ”œโ”€โ”€ tests/              # JavaScript tests
โ”‚   โ””โ”€โ”€ README.md           # Component documentation
โ”œโ”€โ”€ mcp/                    # FastMCP server
โ”‚   โ”œโ”€โ”€ fastmcp_server.py   # Main server file
โ”‚   โ”œโ”€โ”€ server.py           # Alternative server
โ”‚   โ””โ”€โ”€ tests/              # MCP tests
โ”œโ”€โ”€ simple_agent/           # AI web automation agent
โ”‚   โ”œโ”€โ”€ simple_agent.py     # Main agent file
โ”‚   โ”œโ”€โ”€ llm_interface.py    # LLM integration
โ”‚   โ””โ”€โ”€ .env               # Environment variables
โ”œโ”€โ”€ venv/                   # Python virtual environment
โ”œโ”€โ”€ setup.py               # Python package configuration
โ”œโ”€โ”€ pyproject.toml         # Project configuration
โ””โ”€โ”€ README.md              # This file

Support

  • Issues: Report bugs and feature requests on GitHub
  • Discussions: Join discussions for questions and ideas
  • Documentation: Check component-specific README files for detailed docs

Roadmap

  • Enhanced simple agent
  • Plugin framework for actions
  • More native actions / Parser enhancements
  • Replay framework

Help needed / Bugs

  • Idle watcher doesn't always wait for the page to load. Need to fix.
  • Simple agent enhancements
  • Parser enhancements
  • Testing

Contact

For questions, issues, or contributions:

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cesail-0.2.0.tar.gz (1.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cesail-0.2.0-py3-none-any.whl (1.1 MB view details)

Uploaded Python 3

File details

Details for the file cesail-0.2.0.tar.gz.

File metadata

  • Download URL: cesail-0.2.0.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for cesail-0.2.0.tar.gz
Algorithm Hash digest
SHA256 b7d62b73bbedff7a609f582fc87a64204fa7bc90a19a68a1250864fe28c94665
MD5 11754e0b0089294c0f4fa9d48546ffec
BLAKE2b-256 960c9eff5447987c6f66359dee636d6565e9a9ddfbb4dc02a2a990ba0d281413

See more details on using hashes here.

File details

Details for the file cesail-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: cesail-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for cesail-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0fe7de0ef0044ddd90a544dea7d3b039c05af79e75eba4579c67be4ae0a99f4d
MD5 923baa34f5836fd7e6d2b94af16e0fae
BLAKE2b-256 c5010138d5ec2d2c4207712fc5ffc8e23edac8b5eeeb7eca5c96fdbbc29a6047

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page