Compare commits
16 Commits
claude/fix
...
copilot/mo
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c1c5dfc49b | ||
|
|
2507720cc7 | ||
|
|
7037021496 | ||
|
|
7c751837ef | ||
|
|
2c918155aa | ||
|
|
854694ef33 | ||
|
|
6534ece026 | ||
|
|
89e28d4eee | ||
|
|
c0f1865287 | ||
|
|
46ef1116c4 | ||
|
|
4df83893ac | ||
|
|
13e116610d | ||
|
|
97c92c4f62 | ||
|
|
46e1a67f61 | ||
|
|
7dfe528d43 | ||
|
|
2dc6588573 |
214
CHANGES_CDP_CONCURRENCY.md
Normal file
214
CHANGES_CDP_CONCURRENCY.md
Normal file
@@ -0,0 +1,214 @@
|
|||||||
|
# CDP Browser Concurrency Fixes and Improvements
|
||||||
|
|
||||||
|
## Overview
|
||||||
|
|
||||||
|
This document describes the changes made to fix concurrency issues with CDP (Chrome DevTools Protocol) browsers when using `arun_many` and improve overall browser management.
|
||||||
|
|
||||||
|
## Problems Addressed
|
||||||
|
|
||||||
|
1. **Race Conditions in Page Creation**: When using managed CDP browsers with concurrent `arun_many` calls, the code attempted to reuse existing pages from `context.pages`, leading to race conditions and "Target page/context closed" errors.
|
||||||
|
|
||||||
|
2. **Proxy Configuration Issues**: Proxy credentials were incorrectly embedded in the `--proxy-server` URL, which doesn't work properly with CDP browsers.
|
||||||
|
|
||||||
|
3. **Insufficient Startup Checks**: Browser process startup checks were minimal and didn't catch early failures effectively.
|
||||||
|
|
||||||
|
4. **Unclear Logging**: Logging messages lacked structure and context, making debugging difficult.
|
||||||
|
|
||||||
|
5. **Duplicate Browser Arguments**: Browser launch arguments could contain duplicates despite deduplication attempts.
|
||||||
|
|
||||||
|
## Solutions Implemented
|
||||||
|
|
||||||
|
### 1. Always Create New Pages in Managed Browser Mode
|
||||||
|
|
||||||
|
**File**: `crawl4ai/browser_manager.py` (lines 1106-1113)
|
||||||
|
|
||||||
|
**Change**: Modified `get_page()` method to always create new pages instead of attempting to reuse existing ones for managed browsers without `storage_state`.
|
||||||
|
|
||||||
|
**Before**:
|
||||||
|
```python
|
||||||
|
context = self.default_context
|
||||||
|
pages = context.pages
|
||||||
|
page = next((p for p in pages if p.url == crawlerRunConfig.url), None)
|
||||||
|
if not page:
|
||||||
|
if pages:
|
||||||
|
page = pages[0]
|
||||||
|
else:
|
||||||
|
# Create new page only if none exist
|
||||||
|
async with self._page_lock:
|
||||||
|
page = await context.new_page()
|
||||||
|
```
|
||||||
|
|
||||||
|
**After**:
|
||||||
|
```python
|
||||||
|
context = self.default_context
|
||||||
|
# Always create new pages instead of reusing existing ones
|
||||||
|
# This prevents race conditions in concurrent scenarios (arun_many with CDP)
|
||||||
|
# Serialize page creation to avoid 'Target page/context closed' errors
|
||||||
|
async with self._page_lock:
|
||||||
|
page = await context.new_page()
|
||||||
|
await self._apply_stealth_to_page(page)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Benefits**:
|
||||||
|
- Eliminates race conditions when multiple tasks call `arun_many` concurrently
|
||||||
|
- Each request gets a fresh, independent page
|
||||||
|
- Page lock serializes creation to prevent TOCTOU (Time-of-check to time-of-use) issues
|
||||||
|
|
||||||
|
### 2. Fixed Proxy Flag Formatting
|
||||||
|
|
||||||
|
**File**: `crawl4ai/browser_manager.py` (lines 103-109)
|
||||||
|
|
||||||
|
**Change**: Removed credentials from proxy URL as they should be handled via separate authentication mechanisms in CDP.
|
||||||
|
|
||||||
|
**Before**:
|
||||||
|
```python
|
||||||
|
elif config.proxy_config:
|
||||||
|
creds = ""
|
||||||
|
if config.proxy_config.username and config.proxy_config.password:
|
||||||
|
creds = f"{config.proxy_config.username}:{config.proxy_config.password}@"
|
||||||
|
flags.append(f"--proxy-server={creds}{config.proxy_config.server}")
|
||||||
|
```
|
||||||
|
|
||||||
|
**After**:
|
||||||
|
```python
|
||||||
|
elif config.proxy_config:
|
||||||
|
# Note: For CDP/managed browsers, proxy credentials should be handled
|
||||||
|
# via authentication, not in the URL. Only pass the server address.
|
||||||
|
flags.append(f"--proxy-server={config.proxy_config.server}")
|
||||||
|
```
|
||||||
|
|
||||||
|
### 3. Enhanced Startup Checks
|
||||||
|
|
||||||
|
**File**: `crawl4ai/browser_manager.py` (lines 298-336)
|
||||||
|
|
||||||
|
**Changes**:
|
||||||
|
- Multiple check intervals (0.1s, 0.2s, 0.3s) to catch early failures
|
||||||
|
- Capture and log stdout/stderr on failure (limited to 200 chars)
|
||||||
|
- Raise `RuntimeError` with detailed diagnostics on startup failure
|
||||||
|
- Log process PID on successful startup in verbose mode
|
||||||
|
|
||||||
|
**Benefits**:
|
||||||
|
- Catches browser crashes during startup
|
||||||
|
- Provides detailed diagnostic information for debugging
|
||||||
|
- Fails fast with clear error messages
|
||||||
|
|
||||||
|
### 4. Improved Logging
|
||||||
|
|
||||||
|
**File**: `crawl4ai/browser_manager.py` (lines 218-291)
|
||||||
|
|
||||||
|
**Changes**:
|
||||||
|
- Structured logging with proper parameter substitution
|
||||||
|
- Log browser type, port, and headless status at launch
|
||||||
|
- Format and log full command with proper shell escaping
|
||||||
|
- Better error messages with context
|
||||||
|
- Consistent use of logger with null checks
|
||||||
|
|
||||||
|
**Example**:
|
||||||
|
```python
|
||||||
|
if self.logger and self.browser_config.verbose:
|
||||||
|
self.logger.debug(
|
||||||
|
"Launching browser: {browser_type} | Port: {port} | Headless: {headless}",
|
||||||
|
tag="BROWSER",
|
||||||
|
params={
|
||||||
|
"browser_type": self.browser_type,
|
||||||
|
"port": self.debugging_port,
|
||||||
|
"headless": self.headless
|
||||||
|
}
|
||||||
|
)
|
||||||
|
```
|
||||||
|
|
||||||
|
### 5. Deduplicate Browser Launch Arguments
|
||||||
|
|
||||||
|
**File**: `crawl4ai/browser_manager.py` (lines 424-425)
|
||||||
|
|
||||||
|
**Change**: Added explicit deduplication after merging all flags.
|
||||||
|
|
||||||
|
```python
|
||||||
|
# merge common launch flags
|
||||||
|
flags.extend(self.build_browser_flags(self.browser_config))
|
||||||
|
# Deduplicate flags - use dict.fromkeys to preserve order while removing duplicates
|
||||||
|
flags = list(dict.fromkeys(flags))
|
||||||
|
```
|
||||||
|
|
||||||
|
### 6. Import Refactoring
|
||||||
|
|
||||||
|
**Files**: `crawl4ai/browser_manager.py`, `crawl4ai/browser_profiler.py`, `tests/browser/test_cdp_concurrency.py`
|
||||||
|
|
||||||
|
**Changes**: Organized all imports according to PEP 8:
|
||||||
|
1. Standard library imports (alphabetized)
|
||||||
|
2. Third-party imports (alphabetized)
|
||||||
|
3. Local imports (alphabetized)
|
||||||
|
|
||||||
|
**Benefits**:
|
||||||
|
- Improved code readability
|
||||||
|
- Easier to spot missing or unused imports
|
||||||
|
- Consistent style across the codebase
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
### New Test Suite
|
||||||
|
|
||||||
|
**File**: `tests/browser/test_cdp_concurrency.py`
|
||||||
|
|
||||||
|
Comprehensive test suite with 8 tests covering:
|
||||||
|
|
||||||
|
1. **Basic Concurrent arun_many**: Validates multiple URLs can be crawled concurrently
|
||||||
|
2. **Sequential arun_many Calls**: Ensures multiple sequential batches work correctly
|
||||||
|
3. **Stress Test**: Multiple concurrent `arun_many` calls to test page lock effectiveness
|
||||||
|
4. **Page Isolation**: Verifies pages are truly independent
|
||||||
|
5. **Different Configurations**: Tests with varying viewport sizes and configs
|
||||||
|
6. **Error Handling**: Ensures errors in one request don't affect others
|
||||||
|
7. **Large Batches**: Scalability test with 10+ URLs
|
||||||
|
8. **Smoke Test Script**: Standalone script for quick validation
|
||||||
|
|
||||||
|
### Running Tests
|
||||||
|
|
||||||
|
**With pytest** (if available):
|
||||||
|
```bash
|
||||||
|
cd /path/to/crawl4ai
|
||||||
|
pytest tests/browser/test_cdp_concurrency.py -v
|
||||||
|
```
|
||||||
|
|
||||||
|
**Standalone smoke test**:
|
||||||
|
```bash
|
||||||
|
cd /path/to/crawl4ai
|
||||||
|
python3 tests/browser/smoke_test_cdp.py
|
||||||
|
```
|
||||||
|
|
||||||
|
## Migration Guide
|
||||||
|
|
||||||
|
### For Users
|
||||||
|
|
||||||
|
No breaking changes. Existing code will continue to work, but with better reliability in concurrent scenarios.
|
||||||
|
|
||||||
|
### For Contributors
|
||||||
|
|
||||||
|
When working with managed browsers:
|
||||||
|
1. Always use the page lock when creating pages in shared contexts
|
||||||
|
2. Prefer creating new pages over reusing existing ones for concurrent operations
|
||||||
|
3. Use structured logging with parameter substitution
|
||||||
|
4. Follow PEP 8 import organization
|
||||||
|
|
||||||
|
## Performance Impact
|
||||||
|
|
||||||
|
- **Positive**: Eliminates race conditions and crashes in concurrent scenarios
|
||||||
|
- **Neutral**: Page creation overhead is negligible compared to page navigation
|
||||||
|
- **Consideration**: More pages may be created, but they are properly closed after use
|
||||||
|
|
||||||
|
## Backward Compatibility
|
||||||
|
|
||||||
|
All changes are backward compatible. Session-based page reuse still works as before when `session_id` is provided.
|
||||||
|
|
||||||
|
## Related Issues
|
||||||
|
|
||||||
|
- Fixes race conditions in concurrent `arun_many` calls with CDP browsers
|
||||||
|
- Addresses "Target page/context closed" errors
|
||||||
|
- Improves browser startup reliability
|
||||||
|
|
||||||
|
## Future Improvements
|
||||||
|
|
||||||
|
Consider:
|
||||||
|
1. Configurable page pooling with proper lifecycle management
|
||||||
|
2. More granular locks for different contexts
|
||||||
|
3. Metrics for page creation/reuse patterns
|
||||||
|
4. Connection pooling for CDP connections
|
||||||
@@ -1383,9 +1383,10 @@ class AsyncPlaywrightCrawlerStrategy(AsyncCrawlerStrategy):
|
|||||||
try:
|
try:
|
||||||
await self.adapter.evaluate(page,
|
await self.adapter.evaluate(page,
|
||||||
f"""
|
f"""
|
||||||
(() => {{
|
(async () => {{
|
||||||
try {{
|
try {{
|
||||||
{remove_overlays_js}
|
const removeOverlays = {remove_overlays_js};
|
||||||
|
await removeOverlays();
|
||||||
return {{ success: true }};
|
return {{ success: true }};
|
||||||
}} catch (error) {{
|
}} catch (error) {{
|
||||||
return {{
|
return {{
|
||||||
|
|||||||
@@ -1,21 +1,26 @@
|
|||||||
|
# Standard library imports
|
||||||
import asyncio
|
import asyncio
|
||||||
import time
|
import hashlib
|
||||||
from typing import List, Optional
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import shlex
|
||||||
import shutil
|
import shutil
|
||||||
import tempfile
|
|
||||||
import psutil
|
|
||||||
import signal
|
import signal
|
||||||
import subprocess
|
import subprocess
|
||||||
import shlex
|
import sys
|
||||||
from playwright.async_api import BrowserContext
|
import tempfile
|
||||||
import hashlib
|
import time
|
||||||
from .js_snippet import load_js_script
|
|
||||||
from .config import DOWNLOAD_PAGE_TIMEOUT
|
|
||||||
from .async_configs import BrowserConfig, CrawlerRunConfig
|
|
||||||
from .utils import get_chromium_path
|
|
||||||
import warnings
|
import warnings
|
||||||
|
from typing import List, Optional
|
||||||
|
|
||||||
|
# Third-party imports
|
||||||
|
import psutil
|
||||||
|
from playwright.async_api import BrowserContext
|
||||||
|
|
||||||
|
# Local imports
|
||||||
|
from .async_configs import BrowserConfig, CrawlerRunConfig
|
||||||
|
from .config import DOWNLOAD_PAGE_TIMEOUT
|
||||||
|
from .js_snippet import load_js_script
|
||||||
|
from .utils import get_chromium_path
|
||||||
|
|
||||||
|
|
||||||
BROWSER_DISABLE_OPTIONS = [
|
BROWSER_DISABLE_OPTIONS = [
|
||||||
@@ -104,10 +109,9 @@ class ManagedBrowser:
|
|||||||
if config.proxy:
|
if config.proxy:
|
||||||
flags.append(f"--proxy-server={config.proxy}")
|
flags.append(f"--proxy-server={config.proxy}")
|
||||||
elif config.proxy_config:
|
elif config.proxy_config:
|
||||||
creds = ""
|
# Note: For CDP/managed browsers, proxy credentials should be handled
|
||||||
if config.proxy_config.username and config.proxy_config.password:
|
# via authentication, not in the URL. Only pass the server address.
|
||||||
creds = f"{config.proxy_config.username}:{config.proxy_config.password}@"
|
flags.append(f"--proxy-server={config.proxy_config.server}")
|
||||||
flags.append(f"--proxy-server={creds}{config.proxy_config.server}")
|
|
||||||
# dedupe
|
# dedupe
|
||||||
return list(dict.fromkeys(flags))
|
return list(dict.fromkeys(flags))
|
||||||
|
|
||||||
@@ -219,11 +223,27 @@ class ManagedBrowser:
|
|||||||
os.remove(fp)
|
os.remove(fp)
|
||||||
except Exception as _e:
|
except Exception as _e:
|
||||||
# non-fatal — we'll try to start anyway, but log what happened
|
# non-fatal — we'll try to start anyway, but log what happened
|
||||||
self.logger.warning(f"pre-launch cleanup failed: {_e}", tag="BROWSER")
|
if self.logger:
|
||||||
|
self.logger.warning(
|
||||||
|
"Pre-launch cleanup failed: {error} | Will attempt to start browser anyway",
|
||||||
|
tag="BROWSER",
|
||||||
|
params={"error": str(_e)}
|
||||||
|
)
|
||||||
|
|
||||||
# Start browser process
|
# Start browser process
|
||||||
try:
|
try:
|
||||||
|
# Log browser launch intent
|
||||||
|
if self.logger and self.browser_config.verbose:
|
||||||
|
self.logger.debug(
|
||||||
|
"Launching browser: {browser_type} | Port: {port} | Headless: {headless}",
|
||||||
|
tag="BROWSER",
|
||||||
|
params={
|
||||||
|
"browser_type": self.browser_type,
|
||||||
|
"port": self.debugging_port,
|
||||||
|
"headless": self.headless
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
# Use DETACHED_PROCESS flag on Windows to fully detach the process
|
# Use DETACHED_PROCESS flag on Windows to fully detach the process
|
||||||
# On Unix, we'll use preexec_fn=os.setpgrp to start the process in a new process group
|
# On Unix, we'll use preexec_fn=os.setpgrp to start the process in a new process group
|
||||||
if sys.platform == "win32":
|
if sys.platform == "win32":
|
||||||
@@ -241,19 +261,36 @@ class ManagedBrowser:
|
|||||||
preexec_fn=os.setpgrp # Start in a new process group
|
preexec_fn=os.setpgrp # Start in a new process group
|
||||||
)
|
)
|
||||||
|
|
||||||
# If verbose is True print args used to run the process
|
# Log full command if verbose logging is enabled
|
||||||
if self.logger and self.browser_config.verbose:
|
if self.logger and self.browser_config.verbose:
|
||||||
|
# Format args for better readability - escape and join
|
||||||
|
formatted_args = ' '.join(shlex.quote(str(arg)) for arg in args)
|
||||||
self.logger.debug(
|
self.logger.debug(
|
||||||
f"Starting browser with args: {' '.join(args)}",
|
"Browser launch command: {command}",
|
||||||
tag="BROWSER"
|
tag="BROWSER",
|
||||||
|
params={"command": formatted_args}
|
||||||
)
|
)
|
||||||
|
|
||||||
# We'll monitor for a short time to make sure it starts properly, but won't keep monitoring
|
# Perform startup health checks
|
||||||
await asyncio.sleep(0.5) # Give browser time to start
|
await asyncio.sleep(0.5) # Initial delay for process startup
|
||||||
await self._initial_startup_check()
|
await self._initial_startup_check()
|
||||||
await asyncio.sleep(2) # Give browser time to start
|
await asyncio.sleep(2) # Additional time for browser initialization
|
||||||
return f"http://{self.host}:{self.debugging_port}"
|
|
||||||
|
cdp_url = f"http://{self.host}:{self.debugging_port}"
|
||||||
|
if self.logger:
|
||||||
|
self.logger.info(
|
||||||
|
"Browser started successfully | CDP URL: {cdp_url}",
|
||||||
|
tag="BROWSER",
|
||||||
|
params={"cdp_url": cdp_url}
|
||||||
|
)
|
||||||
|
return cdp_url
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
if self.logger:
|
||||||
|
self.logger.error(
|
||||||
|
"Failed to start browser: {error}",
|
||||||
|
tag="BROWSER",
|
||||||
|
params={"error": str(e)}
|
||||||
|
)
|
||||||
await self.cleanup()
|
await self.cleanup()
|
||||||
raise Exception(f"Failed to start browser: {e}")
|
raise Exception(f"Failed to start browser: {e}")
|
||||||
|
|
||||||
@@ -266,23 +303,41 @@ class ManagedBrowser:
|
|||||||
return
|
return
|
||||||
|
|
||||||
# Check that process started without immediate termination
|
# Check that process started without immediate termination
|
||||||
await asyncio.sleep(0.5)
|
# Perform multiple checks with increasing delays to catch early failures
|
||||||
if self.browser_process.poll() is not None:
|
check_intervals = [0.1, 0.2, 0.3] # Total 0.6s
|
||||||
# Process already terminated
|
|
||||||
stdout, stderr = b"", b""
|
|
||||||
try:
|
|
||||||
stdout, stderr = self.browser_process.communicate(timeout=0.5)
|
|
||||||
except subprocess.TimeoutExpired:
|
|
||||||
pass
|
|
||||||
|
|
||||||
self.logger.error(
|
for delay in check_intervals:
|
||||||
message="Browser process terminated during startup | Code: {code} | STDOUT: {stdout} | STDERR: {stderr}",
|
await asyncio.sleep(delay)
|
||||||
tag="ERROR",
|
if self.browser_process.poll() is not None:
|
||||||
params={
|
# Process already terminated - capture output for debugging
|
||||||
"code": self.browser_process.returncode,
|
stdout, stderr = b"", b""
|
||||||
"stdout": stdout.decode() if stdout else "",
|
try:
|
||||||
"stderr": stderr.decode() if stderr else "",
|
stdout, stderr = self.browser_process.communicate(timeout=0.5)
|
||||||
},
|
except subprocess.TimeoutExpired:
|
||||||
|
pass
|
||||||
|
|
||||||
|
error_msg = "Browser process terminated during startup"
|
||||||
|
if stderr:
|
||||||
|
error_msg += f" | STDERR: {stderr.decode()[:200]}" # Limit output length
|
||||||
|
if stdout:
|
||||||
|
error_msg += f" | STDOUT: {stdout.decode()[:200]}"
|
||||||
|
|
||||||
|
self.logger.error(
|
||||||
|
message="{error_msg} | Exit code: {code}",
|
||||||
|
tag="BROWSER",
|
||||||
|
params={
|
||||||
|
"error_msg": error_msg,
|
||||||
|
"code": self.browser_process.returncode,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
raise RuntimeError(f"Browser failed to start: {error_msg}")
|
||||||
|
|
||||||
|
# Process is still running after checks - log success
|
||||||
|
if self.logger and self.browser_config.verbose:
|
||||||
|
self.logger.debug(
|
||||||
|
"Browser process startup check passed | PID: {pid}",
|
||||||
|
tag="BROWSER",
|
||||||
|
params={"pid": self.browser_process.pid}
|
||||||
)
|
)
|
||||||
|
|
||||||
async def _monitor_browser_process(self):
|
async def _monitor_browser_process(self):
|
||||||
@@ -371,6 +426,8 @@ class ManagedBrowser:
|
|||||||
flags.append("--headless=new")
|
flags.append("--headless=new")
|
||||||
# merge common launch flags
|
# merge common launch flags
|
||||||
flags.extend(self.build_browser_flags(self.browser_config))
|
flags.extend(self.build_browser_flags(self.browser_config))
|
||||||
|
# Deduplicate flags - use dict.fromkeys to preserve order while removing duplicates
|
||||||
|
flags = list(dict.fromkeys(flags))
|
||||||
elif self.browser_type == "firefox":
|
elif self.browser_type == "firefox":
|
||||||
flags = [
|
flags = [
|
||||||
"--remote-debugging-port",
|
"--remote-debugging-port",
|
||||||
@@ -1048,21 +1105,12 @@ class BrowserManager:
|
|||||||
await self._apply_stealth_to_page(page)
|
await self._apply_stealth_to_page(page)
|
||||||
else:
|
else:
|
||||||
context = self.default_context
|
context = self.default_context
|
||||||
pages = context.pages
|
# Always create new pages instead of reusing existing ones
|
||||||
page = next((p for p in pages if p.url == crawlerRunConfig.url), None)
|
# This prevents race conditions in concurrent scenarios (arun_many with CDP)
|
||||||
if not page:
|
# Serialize page creation to avoid 'Target page/context closed' errors
|
||||||
if pages:
|
async with self._page_lock:
|
||||||
page = pages[0]
|
page = await context.new_page()
|
||||||
else:
|
await self._apply_stealth_to_page(page)
|
||||||
# Double-check under lock to avoid TOCTOU and ensure only
|
|
||||||
# one task calls new_page when pages=[] concurrently
|
|
||||||
async with self._page_lock:
|
|
||||||
pages = context.pages
|
|
||||||
if pages:
|
|
||||||
page = pages[0]
|
|
||||||
else:
|
|
||||||
page = await context.new_page()
|
|
||||||
await self._apply_stealth_to_page(page)
|
|
||||||
else:
|
else:
|
||||||
# Otherwise, check if we have an existing context for this config
|
# Otherwise, check if we have an existing context for this config
|
||||||
config_signature = self._make_config_signature(crawlerRunConfig)
|
config_signature = self._make_config_signature(crawlerRunConfig)
|
||||||
|
|||||||
@@ -5,22 +5,26 @@ This module provides a dedicated class for managing browser profiles
|
|||||||
that can be used for identity-based crawling with Crawl4AI.
|
that can be used for identity-based crawling with Crawl4AI.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import os
|
# Standard library imports
|
||||||
import asyncio
|
import asyncio
|
||||||
import signal
|
|
||||||
import sys
|
|
||||||
import datetime
|
import datetime
|
||||||
import uuid
|
|
||||||
import shutil
|
|
||||||
import json
|
import json
|
||||||
|
import os
|
||||||
|
import shutil
|
||||||
|
import signal
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import sys
|
||||||
import time
|
import time
|
||||||
from typing import List, Dict, Optional, Any
|
import uuid
|
||||||
|
from typing import Any, Dict, List, Optional
|
||||||
|
|
||||||
|
# Third-party imports
|
||||||
from rich.console import Console
|
from rich.console import Console
|
||||||
|
|
||||||
|
# Local imports
|
||||||
from .async_configs import BrowserConfig
|
from .async_configs import BrowserConfig
|
||||||
from .browser_manager import ManagedBrowser
|
|
||||||
from .async_logger import AsyncLogger, AsyncLoggerBase, LogColor
|
from .async_logger import AsyncLogger, AsyncLoggerBase, LogColor
|
||||||
|
from .browser_manager import ManagedBrowser
|
||||||
from .utils import get_home_folder
|
from .utils import get_home_folder
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,15 +6,16 @@ x-base-config: &base-config
|
|||||||
- "11235:11235" # Gunicorn port
|
- "11235:11235" # Gunicorn port
|
||||||
env_file:
|
env_file:
|
||||||
- .llm.env # API keys (create from .llm.env.example)
|
- .llm.env # API keys (create from .llm.env.example)
|
||||||
environment:
|
# Uncomment to set default environment variables (will overwrite .llm.env)
|
||||||
- OPENAI_API_KEY=${OPENAI_API_KEY:-}
|
# environment:
|
||||||
- DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY:-}
|
# - OPENAI_API_KEY=${OPENAI_API_KEY:-}
|
||||||
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-}
|
# - DEEPSEEK_API_KEY=${DEEPSEEK_API_KEY:-}
|
||||||
- GROQ_API_KEY=${GROQ_API_KEY:-}
|
# - ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY:-}
|
||||||
- TOGETHER_API_KEY=${TOGETHER_API_KEY:-}
|
# - GROQ_API_KEY=${GROQ_API_KEY:-}
|
||||||
- MISTRAL_API_KEY=${MISTRAL_API_KEY:-}
|
# - TOGETHER_API_KEY=${TOGETHER_API_KEY:-}
|
||||||
- GEMINI_API_TOKEN=${GEMINI_API_TOKEN:-}
|
# - MISTRAL_API_KEY=${MISTRAL_API_KEY:-}
|
||||||
- LLM_PROVIDER=${LLM_PROVIDER:-} # Optional: Override default provider (e.g., "anthropic/claude-3-opus")
|
# - GEMINI_API_KEY=${GEMINI_API_KEY:-}
|
||||||
|
# - LLM_PROVIDER=${LLM_PROVIDER:-} # Optional: Override default provider (e.g., "anthropic/claude-3-opus")
|
||||||
volumes:
|
volumes:
|
||||||
- /dev/shm:/dev/shm # Chromium performance
|
- /dev/shm:/dev/shm # Chromium performance
|
||||||
deploy:
|
deploy:
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ A comprehensive web-based tutorial for learning and experimenting with C4A-Scrip
|
|||||||
|
|
||||||
2. **Install Dependencies**
|
2. **Install Dependencies**
|
||||||
```bash
|
```bash
|
||||||
pip install flask
|
pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
3. **Launch the Server**
|
3. **Launch the Server**
|
||||||
@@ -28,7 +28,7 @@ A comprehensive web-based tutorial for learning and experimenting with C4A-Scrip
|
|||||||
|
|
||||||
4. **Open in Browser**
|
4. **Open in Browser**
|
||||||
```
|
```
|
||||||
http://localhost:8080
|
http://localhost:8000
|
||||||
```
|
```
|
||||||
|
|
||||||
**🌐 Try Online**: [Live Demo](https://docs.crawl4ai.com/c4a-script/demo)
|
**🌐 Try Online**: [Live Demo](https://docs.crawl4ai.com/c4a-script/demo)
|
||||||
@@ -325,7 +325,7 @@ Powers the recording functionality:
|
|||||||
### Configuration
|
### Configuration
|
||||||
```python
|
```python
|
||||||
# server.py configuration
|
# server.py configuration
|
||||||
PORT = 8080
|
PORT = 8000
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
THREADED = True
|
THREADED = True
|
||||||
```
|
```
|
||||||
@@ -343,9 +343,9 @@ THREADED = True
|
|||||||
**Port Already in Use**
|
**Port Already in Use**
|
||||||
```bash
|
```bash
|
||||||
# Kill existing process
|
# Kill existing process
|
||||||
lsof -ti:8080 | xargs kill -9
|
lsof -ti:8000 | xargs kill -9
|
||||||
# Or use different port
|
# Or use different port
|
||||||
python server.py --port 8081
|
python server.py --port 8001
|
||||||
```
|
```
|
||||||
|
|
||||||
**Blockly Not Loading**
|
**Blockly Not Loading**
|
||||||
|
|||||||
@@ -216,7 +216,7 @@ def get_examples():
|
|||||||
'name': 'Handle Cookie Banner',
|
'name': 'Handle Cookie Banner',
|
||||||
'description': 'Accept cookies and close newsletter popup',
|
'description': 'Accept cookies and close newsletter popup',
|
||||||
'script': '''# Handle cookie banner and newsletter
|
'script': '''# Handle cookie banner and newsletter
|
||||||
GO http://127.0.0.1:8080/playground/
|
GO http://127.0.0.1:8000/playground/
|
||||||
WAIT `body` 2
|
WAIT `body` 2
|
||||||
IF (EXISTS `.cookie-banner`) THEN CLICK `.accept`
|
IF (EXISTS `.cookie-banner`) THEN CLICK `.accept`
|
||||||
IF (EXISTS `.newsletter-popup`) THEN CLICK `.close`'''
|
IF (EXISTS `.newsletter-popup`) THEN CLICK `.close`'''
|
||||||
|
|||||||
@@ -82,6 +82,42 @@ If you installed Crawl4AI (which installs Playwright under the hood), you alread
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
### Creating a Profile Using the Crawl4AI CLI (Easiest)
|
||||||
|
|
||||||
|
If you prefer a guided, interactive setup, use the built-in CLI to create and manage persistent browser profiles.
|
||||||
|
|
||||||
|
1.⠀Launch the profile manager:
|
||||||
|
```bash
|
||||||
|
crwl profiles
|
||||||
|
```
|
||||||
|
|
||||||
|
2.⠀Choose "Create new profile" and enter a profile name. A Chromium window opens so you can log in to sites and configure settings. When finished, return to the terminal and press `q` to save the profile.
|
||||||
|
|
||||||
|
3.⠀Profiles are saved under `~/.crawl4ai/profiles/<profile_name>` (for example: `/home/<you>/.crawl4ai/profiles/test_profile_1`) along with a `storage_state.json` for cookies and session data.
|
||||||
|
|
||||||
|
4.⠀Optionally, choose "List profiles" in the CLI to view available profiles and their paths.
|
||||||
|
|
||||||
|
5.⠀Use the saved path with `BrowserConfig.user_data_dir`:
|
||||||
|
```python
|
||||||
|
from crawl4ai import AsyncWebCrawler, BrowserConfig
|
||||||
|
|
||||||
|
profile_path = "/home/<you>/.crawl4ai/profiles/test_profile_1"
|
||||||
|
|
||||||
|
browser_config = BrowserConfig(
|
||||||
|
headless=True,
|
||||||
|
use_managed_browser=True,
|
||||||
|
user_data_dir=profile_path,
|
||||||
|
browser_type="chromium",
|
||||||
|
)
|
||||||
|
|
||||||
|
async with AsyncWebCrawler(config=browser_config) as crawler:
|
||||||
|
result = await crawler.arun(url="https://example.com/private")
|
||||||
|
```
|
||||||
|
|
||||||
|
The CLI also supports listing and deleting profiles, and even testing a crawl directly from the menu.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## 3. Using Managed Browsers in Crawl4AI
|
## 3. Using Managed Browsers in Crawl4AI
|
||||||
|
|
||||||
Once you have a data directory with your session data, pass it to **`BrowserConfig`**:
|
Once you have a data directory with your session data, pass it to **`BrowserConfig`**:
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ A comprehensive web-based tutorial for learning and experimenting with C4A-Scrip
|
|||||||
|
|
||||||
2. **Install Dependencies**
|
2. **Install Dependencies**
|
||||||
```bash
|
```bash
|
||||||
pip install flask
|
pip install -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
3. **Launch the Server**
|
3. **Launch the Server**
|
||||||
@@ -28,7 +28,7 @@ A comprehensive web-based tutorial for learning and experimenting with C4A-Scrip
|
|||||||
|
|
||||||
4. **Open in Browser**
|
4. **Open in Browser**
|
||||||
```
|
```
|
||||||
http://localhost:8080
|
http://localhost:8000
|
||||||
```
|
```
|
||||||
|
|
||||||
**🌐 Try Online**: [Live Demo](https://docs.crawl4ai.com/c4a-script/demo)
|
**🌐 Try Online**: [Live Demo](https://docs.crawl4ai.com/c4a-script/demo)
|
||||||
@@ -325,7 +325,7 @@ Powers the recording functionality:
|
|||||||
### Configuration
|
### Configuration
|
||||||
```python
|
```python
|
||||||
# server.py configuration
|
# server.py configuration
|
||||||
PORT = 8080
|
PORT = 8000
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
THREADED = True
|
THREADED = True
|
||||||
```
|
```
|
||||||
@@ -343,9 +343,9 @@ THREADED = True
|
|||||||
**Port Already in Use**
|
**Port Already in Use**
|
||||||
```bash
|
```bash
|
||||||
# Kill existing process
|
# Kill existing process
|
||||||
lsof -ti:8080 | xargs kill -9
|
lsof -ti:8000 | xargs kill -9
|
||||||
# Or use different port
|
# Or use different port
|
||||||
python server.py --port 8081
|
python server.py --port 8001
|
||||||
```
|
```
|
||||||
|
|
||||||
**Blockly Not Loading**
|
**Blockly Not Loading**
|
||||||
|
|||||||
@@ -216,7 +216,7 @@ def get_examples():
|
|||||||
'name': 'Handle Cookie Banner',
|
'name': 'Handle Cookie Banner',
|
||||||
'description': 'Accept cookies and close newsletter popup',
|
'description': 'Accept cookies and close newsletter popup',
|
||||||
'script': '''# Handle cookie banner and newsletter
|
'script': '''# Handle cookie banner and newsletter
|
||||||
GO http://127.0.0.1:8080/playground/
|
GO http://127.0.0.1:8000/playground/
|
||||||
WAIT `body` 2
|
WAIT `body` 2
|
||||||
IF (EXISTS `.cookie-banner`) THEN CLICK `.accept`
|
IF (EXISTS `.cookie-banner`) THEN CLICK `.accept`
|
||||||
IF (EXISTS `.newsletter-popup`) THEN CLICK `.close`'''
|
IF (EXISTS `.newsletter-popup`) THEN CLICK `.close`'''
|
||||||
@@ -283,7 +283,7 @@ WAIT `.success-message` 5'''
|
|||||||
return jsonify(examples)
|
return jsonify(examples)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
port = int(os.environ.get('PORT', 8080))
|
port = int(os.environ.get('PORT', 8000))
|
||||||
print(f"""
|
print(f"""
|
||||||
╔══════════════════════════════════════════════════════════╗
|
╔══════════════════════════════════════════════════════════╗
|
||||||
║ C4A-Script Interactive Tutorial Server ║
|
║ C4A-Script Interactive Tutorial Server ║
|
||||||
|
|||||||
@@ -69,12 +69,12 @@ The tutorial includes a Flask-based web interface with:
|
|||||||
cd docs/examples/c4a_script/tutorial/
|
cd docs/examples/c4a_script/tutorial/
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
pip install flask
|
pip install -r requirements.txt
|
||||||
|
|
||||||
# Launch the tutorial server
|
# Launch the tutorial server
|
||||||
python app.py
|
python server.py
|
||||||
|
|
||||||
# Open http://localhost:5000 in your browser
|
# Open http://localhost:8000 in your browser
|
||||||
```
|
```
|
||||||
|
|
||||||
## Core Concepts
|
## Core Concepts
|
||||||
@@ -111,8 +111,8 @@ CLICK `.submit-btn`
|
|||||||
# By attribute
|
# By attribute
|
||||||
CLICK `button[type="submit"]`
|
CLICK `button[type="submit"]`
|
||||||
|
|
||||||
# By text content
|
# By accessible attributes
|
||||||
CLICK `button:contains("Sign In")`
|
CLICK `button[aria-label="Search"][title="Search"]`
|
||||||
|
|
||||||
# Complex selectors
|
# Complex selectors
|
||||||
CLICK `.form-container input[name="email"]`
|
CLICK `.form-container input[name="email"]`
|
||||||
|
|||||||
@@ -57,7 +57,7 @@
|
|||||||
|
|
||||||
Crawl4AI is the #1 trending GitHub repository, actively maintained by a vibrant community. It delivers blazing-fast, AI-ready web crawling tailored for large language models, AI agents, and data pipelines. Fully open source, flexible, and built for real-time performance, **Crawl4AI** empowers developers with unmatched speed, precision, and deployment ease.
|
Crawl4AI is the #1 trending GitHub repository, actively maintained by a vibrant community. It delivers blazing-fast, AI-ready web crawling tailored for large language models, AI agents, and data pipelines. Fully open source, flexible, and built for real-time performance, **Crawl4AI** empowers developers with unmatched speed, precision, and deployment ease.
|
||||||
|
|
||||||
> **Note**: If you're looking for the old documentation, you can access it [here](https://old.docs.crawl4ai.com).
|
> Enjoy using Crawl4AI? Consider **[becoming a sponsor](https://github.com/sponsors/unclecode)** to support ongoing development and community growth!
|
||||||
|
|
||||||
## 🆕 AI Assistant Skill Now Available!
|
## 🆕 AI Assistant Skill Now Available!
|
||||||
|
|
||||||
|
|||||||
@@ -529,8 +529,19 @@ class AdminDashboard {
|
|||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group full-width">
|
<div class="form-group full-width">
|
||||||
<label>Integration Guide</label>
|
<label>Long Description (Markdown - Overview tab)</label>
|
||||||
<textarea id="form-integration" rows="10">${app?.integration_guide || ''}</textarea>
|
<textarea id="form-long-description" rows="10" placeholder="Enter detailed description with markdown formatting...">${app?.long_description || ''}</textarea>
|
||||||
|
<small>Markdown support: **bold**, *italic*, [links](url), # headers, code blocks, lists</small>
|
||||||
|
</div>
|
||||||
|
<div class="form-group full-width">
|
||||||
|
<label>Integration Guide (Markdown - Integration tab)</label>
|
||||||
|
<textarea id="form-integration" rows="20" placeholder="Enter integration guide with installation, examples, and code snippets using markdown...">${app?.integration_guide || ''}</textarea>
|
||||||
|
<small>Single markdown field with installation, examples, and complete guide. Code blocks get auto copy buttons.</small>
|
||||||
|
</div>
|
||||||
|
<div class="form-group full-width">
|
||||||
|
<label>Documentation (Markdown - Documentation tab)</label>
|
||||||
|
<textarea id="form-documentation" rows="20" placeholder="Enter documentation with API reference, examples, and best practices using markdown...">${app?.documentation || ''}</textarea>
|
||||||
|
<small>Full documentation with API reference, examples, best practices, etc.</small>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
@@ -712,7 +723,9 @@ class AdminDashboard {
|
|||||||
data.contact_email = document.getElementById('form-email').value;
|
data.contact_email = document.getElementById('form-email').value;
|
||||||
data.featured = document.getElementById('form-featured').checked ? 1 : 0;
|
data.featured = document.getElementById('form-featured').checked ? 1 : 0;
|
||||||
data.sponsored = document.getElementById('form-sponsored').checked ? 1 : 0;
|
data.sponsored = document.getElementById('form-sponsored').checked ? 1 : 0;
|
||||||
|
data.long_description = document.getElementById('form-long-description').value;
|
||||||
data.integration_guide = document.getElementById('form-integration').value;
|
data.integration_guide = document.getElementById('form-integration').value;
|
||||||
|
data.documentation = document.getElementById('form-documentation').value;
|
||||||
} else if (type === 'articles') {
|
} else if (type === 'articles') {
|
||||||
data.title = document.getElementById('form-title').value;
|
data.title = document.getElementById('form-title').value;
|
||||||
data.slug = this.generateSlug(data.title);
|
data.slug = this.generateSlug(data.title);
|
||||||
|
|||||||
@@ -278,12 +278,12 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tab-content {
|
.tab-content {
|
||||||
display: none;
|
display: none !important;
|
||||||
padding: 2rem;
|
padding: 2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-content.active {
|
.tab-content.active {
|
||||||
display: block;
|
display: block !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Overview Layout */
|
/* Overview Layout */
|
||||||
@@ -510,6 +510,31 @@
|
|||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Markdown rendered code blocks */
|
||||||
|
.integration-content pre,
|
||||||
|
.docs-content pre {
|
||||||
|
background: var(--bg-dark);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
margin: 1rem 0;
|
||||||
|
padding: 1rem;
|
||||||
|
padding-top: 2.5rem; /* Space for copy button */
|
||||||
|
overflow-x: auto;
|
||||||
|
position: relative;
|
||||||
|
max-height: none; /* Remove any height restrictions */
|
||||||
|
height: auto; /* Allow content to expand */
|
||||||
|
}
|
||||||
|
|
||||||
|
.integration-content pre code,
|
||||||
|
.docs-content pre code {
|
||||||
|
background: transparent;
|
||||||
|
padding: 0;
|
||||||
|
color: var(--text-secondary);
|
||||||
|
font-size: 0.875rem;
|
||||||
|
line-height: 1.5;
|
||||||
|
white-space: pre; /* Preserve whitespace and line breaks */
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
/* Feature Grid */
|
/* Feature Grid */
|
||||||
.feature-grid {
|
.feature-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
|||||||
@@ -73,27 +73,14 @@
|
|||||||
<div class="tabs">
|
<div class="tabs">
|
||||||
<button class="tab-btn active" data-tab="overview">Overview</button>
|
<button class="tab-btn active" data-tab="overview">Overview</button>
|
||||||
<button class="tab-btn" data-tab="integration">Integration</button>
|
<button class="tab-btn" data-tab="integration">Integration</button>
|
||||||
<button class="tab-btn" data-tab="docs">Documentation</button>
|
<!-- <button class="tab-btn" data-tab="docs">Documentation</button>
|
||||||
<button class="tab-btn" data-tab="support">Support</button>
|
<button class="tab-btn" data-tab="support">Support</button> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<section id="overview-tab" class="tab-content active">
|
<section id="overview-tab" class="tab-content active">
|
||||||
<div class="overview-columns">
|
<div class="overview-columns">
|
||||||
<div class="overview-main">
|
<div class="overview-main">
|
||||||
<h2>Overview</h2>
|
|
||||||
<div id="app-overview">Overview content goes here.</div>
|
<div id="app-overview">Overview content goes here.</div>
|
||||||
|
|
||||||
<h3>Key Features</h3>
|
|
||||||
<ul id="app-features" class="features-list">
|
|
||||||
<li>Feature 1</li>
|
|
||||||
<li>Feature 2</li>
|
|
||||||
<li>Feature 3</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h3>Use Cases</h3>
|
|
||||||
<div id="app-use-cases" class="use-cases">
|
|
||||||
<p>Describe how this app can help your workflow.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<aside class="sidebar">
|
<aside class="sidebar">
|
||||||
@@ -142,37 +129,16 @@
|
|||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="integration-tab" class="tab-content">
|
<section id="integration-tab" class="tab-content">
|
||||||
<div class="integration-content">
|
<div class="integration-content" id="app-integration">
|
||||||
<h2>Integration Guide</h2>
|
|
||||||
|
|
||||||
<h3>Installation</h3>
|
|
||||||
<div class="code-block">
|
|
||||||
<pre><code id="install-code"># Installation instructions will appear here</code></pre>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h3>Basic Usage</h3>
|
|
||||||
<div class="code-block">
|
|
||||||
<pre><code id="usage-code"># Usage example will appear here</code></pre>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h3>Complete Integration Example</h3>
|
|
||||||
<div class="code-block">
|
|
||||||
<button class="copy-btn" id="copy-integration">Copy</button>
|
|
||||||
<pre><code id="integration-code"># Complete integration guide will appear here</code></pre>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="docs-tab" class="tab-content">
|
<!-- <section id="docs-tab" class="tab-content">
|
||||||
<div class="docs-content">
|
<div class="docs-content" id="app-docs">
|
||||||
<h2>Documentation</h2>
|
|
||||||
<div id="app-docs" class="doc-sections">
|
|
||||||
<p>Documentation coming soon.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section> -->
|
||||||
|
|
||||||
<section id="support-tab" class="tab-content">
|
<!-- <section id="support-tab" class="tab-content">
|
||||||
<div class="docs-content">
|
<div class="docs-content">
|
||||||
<h2>Support</h2>
|
<h2>Support</h2>
|
||||||
<div class="support-grid">
|
<div class="support-grid">
|
||||||
@@ -190,7 +156,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section> -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</main>
|
</main>
|
||||||
|
|||||||
@@ -112,7 +112,7 @@ class AppDetailPage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Contact
|
// Contact
|
||||||
document.getElementById('app-contact').textContent = this.appData.contact_email || 'Not available';
|
document.getElementById('app-contact') && (document.getElementById('app-contact').textContent = this.appData.contact_email || 'Not available');
|
||||||
|
|
||||||
// Sidebar info
|
// Sidebar info
|
||||||
document.getElementById('sidebar-downloads').textContent = this.formatNumber(this.appData.downloads || 0);
|
document.getElementById('sidebar-downloads').textContent = this.formatNumber(this.appData.downloads || 0);
|
||||||
@@ -123,144 +123,132 @@ class AppDetailPage {
|
|||||||
document.getElementById('sidebar-pricing').textContent = this.appData.pricing || 'Free';
|
document.getElementById('sidebar-pricing').textContent = this.appData.pricing || 'Free';
|
||||||
document.getElementById('sidebar-contact').textContent = this.appData.contact_email || 'contact@example.com';
|
document.getElementById('sidebar-contact').textContent = this.appData.contact_email || 'contact@example.com';
|
||||||
|
|
||||||
// Integration guide
|
// Render tab contents from database fields
|
||||||
this.renderIntegrationGuide();
|
this.renderTabContents();
|
||||||
}
|
}
|
||||||
|
|
||||||
renderIntegrationGuide() {
|
renderTabContents() {
|
||||||
// Installation code
|
// Overview tab - use long_description from database
|
||||||
const installCode = document.getElementById('install-code');
|
const overviewDiv = document.getElementById('app-overview');
|
||||||
if (installCode) {
|
if (overviewDiv) {
|
||||||
if (this.appData.type === 'Open Source' && this.appData.github_url) {
|
if (this.appData.long_description) {
|
||||||
installCode.textContent = `# Clone from GitHub
|
overviewDiv.innerHTML = this.renderMarkdown(this.appData.long_description);
|
||||||
git clone ${this.appData.github_url}
|
} else {
|
||||||
|
overviewDiv.innerHTML = `<p>${this.appData.description || 'No overview available.'}</p>`;
|
||||||
# Install dependencies
|
|
||||||
pip install -r requirements.txt`;
|
|
||||||
} else if (this.appData.name.toLowerCase().includes('api')) {
|
|
||||||
installCode.textContent = `# Install via pip
|
|
||||||
pip install ${this.appData.slug}
|
|
||||||
|
|
||||||
# Or install from source
|
|
||||||
pip install git+${this.appData.github_url || 'https://github.com/example/repo'}`;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Usage code - customize based on category
|
// Integration tab - use integration_guide field from database
|
||||||
const usageCode = document.getElementById('usage-code');
|
const integrationDiv = document.getElementById('app-integration');
|
||||||
if (usageCode) {
|
if (integrationDiv) {
|
||||||
if (this.appData.category === 'Browser Automation') {
|
if (this.appData.integration_guide) {
|
||||||
usageCode.textContent = `from crawl4ai import AsyncWebCrawler
|
integrationDiv.innerHTML = this.renderMarkdown(this.appData.integration_guide);
|
||||||
from ${this.appData.slug.replace(/-/g, '_')} import ${this.appData.name.replace(/\s+/g, '')}
|
// Add copy buttons to all code blocks
|
||||||
|
this.addCopyButtonsToCodeBlocks(integrationDiv);
|
||||||
async def main():
|
} else {
|
||||||
# Initialize ${this.appData.name}
|
integrationDiv.innerHTML = '<p>Integration guide not yet available. Please check the official website for details.</p>';
|
||||||
automation = ${this.appData.name.replace(/\s+/g, '')}()
|
|
||||||
|
|
||||||
async with AsyncWebCrawler() as crawler:
|
|
||||||
result = await crawler.arun(
|
|
||||||
url="https://example.com",
|
|
||||||
browser_config=automation.config,
|
|
||||||
wait_for="css:body"
|
|
||||||
)
|
|
||||||
print(result.markdown)`;
|
|
||||||
} else if (this.appData.category === 'Proxy Services') {
|
|
||||||
usageCode.textContent = `from crawl4ai import AsyncWebCrawler
|
|
||||||
import ${this.appData.slug.replace(/-/g, '_')}
|
|
||||||
|
|
||||||
# Configure proxy
|
|
||||||
proxy_config = {
|
|
||||||
"server": "${this.appData.website_url || 'https://proxy.example.com'}",
|
|
||||||
"username": "your_username",
|
|
||||||
"password": "your_password"
|
|
||||||
}
|
|
||||||
|
|
||||||
async with AsyncWebCrawler(proxy=proxy_config) as crawler:
|
|
||||||
result = await crawler.arun(
|
|
||||||
url="https://example.com",
|
|
||||||
bypass_cache=True
|
|
||||||
)
|
|
||||||
print(result.status_code)`;
|
|
||||||
} else if (this.appData.category === 'LLM Integration') {
|
|
||||||
usageCode.textContent = `from crawl4ai import AsyncWebCrawler
|
|
||||||
from crawl4ai.extraction_strategy import LLMExtractionStrategy
|
|
||||||
|
|
||||||
# Configure LLM extraction
|
|
||||||
strategy = LLMExtractionStrategy(
|
|
||||||
provider="${this.appData.name.toLowerCase().includes('gpt') ? 'openai' : 'anthropic'}",
|
|
||||||
api_key="your-api-key",
|
|
||||||
model="${this.appData.name.toLowerCase().includes('gpt') ? 'gpt-4' : 'claude-3'}",
|
|
||||||
instruction="Extract structured data"
|
|
||||||
)
|
|
||||||
|
|
||||||
async with AsyncWebCrawler() as crawler:
|
|
||||||
result = await crawler.arun(
|
|
||||||
url="https://example.com",
|
|
||||||
extraction_strategy=strategy
|
|
||||||
)
|
|
||||||
print(result.extracted_content)`;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Integration example
|
// Documentation tab - use documentation field from database
|
||||||
const integrationCode = document.getElementById('integration-code');
|
const docsDiv = document.getElementById('app-docs');
|
||||||
if (integrationCode) {
|
if (docsDiv) {
|
||||||
integrationCode.textContent = this.appData.integration_guide ||
|
if (this.appData.documentation) {
|
||||||
`# Complete ${this.appData.name} Integration Example
|
docsDiv.innerHTML = this.renderMarkdown(this.appData.documentation);
|
||||||
|
// Add copy buttons to all code blocks
|
||||||
from crawl4ai import AsyncWebCrawler
|
this.addCopyButtonsToCodeBlocks(docsDiv);
|
||||||
from crawl4ai.extraction_strategy import JsonCssExtractionStrategy
|
} else {
|
||||||
import json
|
docsDiv.innerHTML = '<p>Documentation coming soon.</p>';
|
||||||
|
}
|
||||||
async def crawl_with_${this.appData.slug.replace(/-/g, '_')}():
|
}
|
||||||
"""
|
|
||||||
Complete example showing how to use ${this.appData.name}
|
|
||||||
with Crawl4AI for production web scraping
|
|
||||||
"""
|
|
||||||
|
|
||||||
# Define extraction schema
|
|
||||||
schema = {
|
|
||||||
"name": "ProductList",
|
|
||||||
"baseSelector": "div.product",
|
|
||||||
"fields": [
|
|
||||||
{"name": "title", "selector": "h2", "type": "text"},
|
|
||||||
{"name": "price", "selector": ".price", "type": "text"},
|
|
||||||
{"name": "image", "selector": "img", "type": "attribute", "attribute": "src"},
|
|
||||||
{"name": "link", "selector": "a", "type": "attribute", "attribute": "href"}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Initialize crawler with ${this.appData.name}
|
addCopyButtonsToCodeBlocks(container) {
|
||||||
async with AsyncWebCrawler(
|
// Find all code blocks and add copy buttons
|
||||||
browser_type="chromium",
|
const codeBlocks = container.querySelectorAll('pre code');
|
||||||
headless=True,
|
codeBlocks.forEach(codeBlock => {
|
||||||
verbose=True
|
const pre = codeBlock.parentElement;
|
||||||
) as crawler:
|
|
||||||
|
|
||||||
# Crawl with extraction
|
// Skip if already has a copy button
|
||||||
result = await crawler.arun(
|
if (pre.querySelector('.copy-btn')) return;
|
||||||
url="https://example.com/products",
|
|
||||||
extraction_strategy=JsonCssExtractionStrategy(schema),
|
|
||||||
cache_mode="bypass",
|
|
||||||
wait_for="css:.product",
|
|
||||||
screenshot=True
|
|
||||||
)
|
|
||||||
|
|
||||||
# Process results
|
// Create copy button
|
||||||
if result.success:
|
const copyBtn = document.createElement('button');
|
||||||
products = json.loads(result.extracted_content)
|
copyBtn.className = 'copy-btn';
|
||||||
print(f"Found {len(products)} products")
|
copyBtn.textContent = 'Copy';
|
||||||
|
copyBtn.onclick = () => {
|
||||||
|
navigator.clipboard.writeText(codeBlock.textContent).then(() => {
|
||||||
|
copyBtn.textContent = '✓ Copied!';
|
||||||
|
setTimeout(() => {
|
||||||
|
copyBtn.textContent = 'Copy';
|
||||||
|
}, 2000);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
for product in products[:5]:
|
// Add button to pre element
|
||||||
print(f"- {product['title']}: {product['price']}")
|
pre.style.position = 'relative';
|
||||||
|
pre.insertBefore(copyBtn, codeBlock);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return products
|
renderMarkdown(text) {
|
||||||
|
if (!text) return '';
|
||||||
|
|
||||||
# Run the crawler
|
// Store code blocks temporarily to protect them from processing
|
||||||
if __name__ == "__main__":
|
const codeBlocks = [];
|
||||||
import asyncio
|
let processed = text.replace(/```(\w+)?\n([\s\S]*?)```/g, (match, lang, code) => {
|
||||||
asyncio.run(crawl_with_${this.appData.slug.replace(/-/g, '_')}())`;
|
const placeholder = `___CODE_BLOCK_${codeBlocks.length}___`;
|
||||||
}
|
codeBlocks.push(`<pre><code class="language-${lang || ''}">${this.escapeHtml(code)}</code></pre>`);
|
||||||
|
return placeholder;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Store inline code temporarily
|
||||||
|
const inlineCodes = [];
|
||||||
|
processed = processed.replace(/`([^`]+)`/g, (match, code) => {
|
||||||
|
const placeholder = `___INLINE_CODE_${inlineCodes.length}___`;
|
||||||
|
inlineCodes.push(`<code>${this.escapeHtml(code)}</code>`);
|
||||||
|
return placeholder;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Now process the rest of the markdown
|
||||||
|
processed = processed
|
||||||
|
// Headers
|
||||||
|
.replace(/^### (.*$)/gim, '<h3>$1</h3>')
|
||||||
|
.replace(/^## (.*$)/gim, '<h2>$1</h2>')
|
||||||
|
.replace(/^# (.*$)/gim, '<h1>$1</h1>')
|
||||||
|
// Bold
|
||||||
|
.replace(/\*\*(.*?)\*\*/g, '<strong>$1</strong>')
|
||||||
|
// Italic
|
||||||
|
.replace(/\*(.*?)\*/g, '<em>$1</em>')
|
||||||
|
// Links
|
||||||
|
.replace(/\[([^\]]+)\]\(([^)]+)\)/g, '<a href="$2" target="_blank">$1</a>')
|
||||||
|
// Line breaks
|
||||||
|
.replace(/\n\n/g, '</p><p>')
|
||||||
|
.replace(/\n/g, '<br>')
|
||||||
|
// Lists
|
||||||
|
.replace(/^\* (.*)$/gim, '<li>$1</li>')
|
||||||
|
.replace(/^- (.*)$/gim, '<li>$1</li>')
|
||||||
|
// Wrap in paragraphs
|
||||||
|
.replace(/^(?!<[h|p|pre|ul|ol|li])/gim, '<p>')
|
||||||
|
.replace(/(?<![>])$/gim, '</p>');
|
||||||
|
|
||||||
|
// Restore inline code
|
||||||
|
inlineCodes.forEach((code, i) => {
|
||||||
|
processed = processed.replace(`___INLINE_CODE_${i}___`, code);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Restore code blocks
|
||||||
|
codeBlocks.forEach((block, i) => {
|
||||||
|
processed = processed.replace(`___CODE_BLOCK_${i}___`, block);
|
||||||
|
});
|
||||||
|
|
||||||
|
return processed;
|
||||||
|
}
|
||||||
|
|
||||||
|
escapeHtml(text) {
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.textContent = text;
|
||||||
|
return div.innerHTML;
|
||||||
}
|
}
|
||||||
|
|
||||||
formatNumber(num) {
|
formatNumber(num) {
|
||||||
@@ -275,45 +263,27 @@ if __name__ == "__main__":
|
|||||||
setupEventListeners() {
|
setupEventListeners() {
|
||||||
// Tab switching
|
// Tab switching
|
||||||
const tabs = document.querySelectorAll('.tab-btn');
|
const tabs = document.querySelectorAll('.tab-btn');
|
||||||
|
|
||||||
tabs.forEach(tab => {
|
tabs.forEach(tab => {
|
||||||
tab.addEventListener('click', () => {
|
tab.addEventListener('click', () => {
|
||||||
// Update active tab
|
// Update active tab button
|
||||||
tabs.forEach(t => t.classList.remove('active'));
|
tabs.forEach(t => t.classList.remove('active'));
|
||||||
tab.classList.add('active');
|
tab.classList.add('active');
|
||||||
|
|
||||||
// Show corresponding content
|
// Show corresponding content
|
||||||
const tabName = tab.dataset.tab;
|
const tabName = tab.dataset.tab;
|
||||||
document.querySelectorAll('.tab-content').forEach(content => {
|
|
||||||
|
// Hide all tab contents
|
||||||
|
const allTabContents = document.querySelectorAll('.tab-content');
|
||||||
|
allTabContents.forEach(content => {
|
||||||
content.classList.remove('active');
|
content.classList.remove('active');
|
||||||
});
|
});
|
||||||
document.getElementById(`${tabName}-tab`).classList.add('active');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Copy integration code
|
// Show the selected tab content
|
||||||
document.getElementById('copy-integration').addEventListener('click', () => {
|
const targetTab = document.getElementById(`${tabName}-tab`);
|
||||||
const code = document.getElementById('integration-code').textContent;
|
if (targetTab) {
|
||||||
navigator.clipboard.writeText(code).then(() => {
|
targetTab.classList.add('active');
|
||||||
const btn = document.getElementById('copy-integration');
|
}
|
||||||
const originalText = btn.innerHTML;
|
|
||||||
btn.innerHTML = '<span>✓</span> Copied!';
|
|
||||||
setTimeout(() => {
|
|
||||||
btn.innerHTML = originalText;
|
|
||||||
}, 2000);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Copy code buttons
|
|
||||||
document.querySelectorAll('.copy-btn').forEach(btn => {
|
|
||||||
btn.addEventListener('click', (e) => {
|
|
||||||
const codeBlock = e.target.closest('.code-block');
|
|
||||||
const code = codeBlock.querySelector('code').textContent;
|
|
||||||
navigator.clipboard.writeText(code).then(() => {
|
|
||||||
btn.textContent = 'Copied!';
|
|
||||||
setTimeout(() => {
|
|
||||||
btn.textContent = 'Copy';
|
|
||||||
}, 2000);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -471,13 +471,17 @@ async def delete_sponsor(sponsor_id: int):
|
|||||||
|
|
||||||
app.include_router(router)
|
app.include_router(router)
|
||||||
|
|
||||||
|
# Version info
|
||||||
|
VERSION = "1.1.0"
|
||||||
|
BUILD_DATE = "2025-10-26"
|
||||||
|
|
||||||
@app.get("/")
|
@app.get("/")
|
||||||
async def root():
|
async def root():
|
||||||
"""API info"""
|
"""API info"""
|
||||||
return {
|
return {
|
||||||
"name": "Crawl4AI Marketplace API",
|
"name": "Crawl4AI Marketplace API",
|
||||||
"version": "1.0.0",
|
"version": VERSION,
|
||||||
|
"build_date": BUILD_DATE,
|
||||||
"endpoints": [
|
"endpoints": [
|
||||||
"/marketplace/api/apps",
|
"/marketplace/api/apps",
|
||||||
"/marketplace/api/articles",
|
"/marketplace/api/articles",
|
||||||
|
|||||||
165
tests/browser/smoke_test_cdp.py
Executable file
165
tests/browser/smoke_test_cdp.py
Executable file
@@ -0,0 +1,165 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""
|
||||||
|
Simple smoke test for CDP concurrency fixes.
|
||||||
|
This can be run without pytest to quickly validate the changes.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import asyncio
|
||||||
|
import sys
|
||||||
|
import os
|
||||||
|
|
||||||
|
# Add the project root to Python path
|
||||||
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../..')))
|
||||||
|
|
||||||
|
from crawl4ai import AsyncWebCrawler, BrowserConfig, CrawlerRunConfig, CacheMode
|
||||||
|
|
||||||
|
|
||||||
|
async def test_basic_cdp():
|
||||||
|
"""Basic test that CDP browser works"""
|
||||||
|
print("Test 1: Basic CDP browser test...")
|
||||||
|
|
||||||
|
browser_config = BrowserConfig(
|
||||||
|
use_managed_browser=True,
|
||||||
|
headless=True,
|
||||||
|
verbose=False
|
||||||
|
)
|
||||||
|
|
||||||
|
try:
|
||||||
|
async with AsyncWebCrawler(config=browser_config) as crawler:
|
||||||
|
result = await crawler.arun(
|
||||||
|
url="https://example.com",
|
||||||
|
config=CrawlerRunConfig(cache_mode=CacheMode.BYPASS)
|
||||||
|
)
|
||||||
|
assert result.success, f"Failed: {result.error_message}"
|
||||||
|
assert len(result.html) > 0, "Empty HTML"
|
||||||
|
print(" ✓ Basic CDP test passed")
|
||||||
|
return True
|
||||||
|
except Exception as e:
|
||||||
|
print(f" ✗ Basic CDP test failed: {e}")
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
async def test_arun_many_cdp():
|
||||||
|
"""Test arun_many with CDP browser - the key concurrency fix"""
|
||||||
|
print("\nTest 2: arun_many with CDP browser...")
|
||||||
|
|
||||||
|
browser_config = BrowserConfig(
|
||||||
|
use_managed_browser=True,
|
||||||
|
headless=True,
|
||||||
|
verbose=False
|
||||||
|
)
|
||||||
|
|
||||||
|
urls = [
|
||||||
|
"https://example.com",
|
||||||
|
"https://httpbin.org/html",
|
||||||
|
"https://www.example.org",
|
||||||
|
]
|
||||||
|
|
||||||
|
try:
|
||||||
|
async with AsyncWebCrawler(config=browser_config) as crawler:
|
||||||
|
results = await crawler.arun_many(
|
||||||
|
urls=urls,
|
||||||
|
config=CrawlerRunConfig(cache_mode=CacheMode.BYPASS)
|
||||||
|
)
|
||||||
|
|
||||||
|
assert len(results) == len(urls), f"Expected {len(urls)} results, got {len(results)}"
|
||||||
|
|
||||||
|
success_count = sum(1 for r in results if r.success)
|
||||||
|
print(f" ✓ Crawled {success_count}/{len(urls)} URLs successfully")
|
||||||
|
|
||||||
|
if success_count >= len(urls) * 0.8: # Allow 20% failure for network issues
|
||||||
|
print(" ✓ arun_many CDP test passed")
|
||||||
|
return True
|
||||||
|
else:
|
||||||
|
print(f" ✗ Too many failures: {len(urls) - success_count}/{len(urls)}")
|
||||||
|
return False
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
print(f" ✗ arun_many CDP test failed: {e}")
|
||||||
|
import traceback
|
||||||
|
traceback.print_exc()
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
async def test_concurrent_arun_many():
|
||||||
|
"""Test concurrent arun_many calls - stress test for page lock"""
|
||||||
|
print("\nTest 3: Concurrent arun_many calls...")
|
||||||
|
|
||||||
|
browser_config = BrowserConfig(
|
||||||
|
use_managed_browser=True,
|
||||||
|
headless=True,
|
||||||
|
verbose=False
|
||||||
|
)
|
||||||
|
|
||||||
|
try:
|
||||||
|
async with AsyncWebCrawler(config=browser_config) as crawler:
|
||||||
|
# Run two arun_many calls concurrently
|
||||||
|
task1 = crawler.arun_many(
|
||||||
|
urls=["https://example.com", "https://httpbin.org/html"],
|
||||||
|
config=CrawlerRunConfig(cache_mode=CacheMode.BYPASS)
|
||||||
|
)
|
||||||
|
|
||||||
|
task2 = crawler.arun_many(
|
||||||
|
urls=["https://www.example.org", "https://example.com"],
|
||||||
|
config=CrawlerRunConfig(cache_mode=CacheMode.BYPASS)
|
||||||
|
)
|
||||||
|
|
||||||
|
results1, results2 = await asyncio.gather(task1, task2, return_exceptions=True)
|
||||||
|
|
||||||
|
# Check for exceptions
|
||||||
|
if isinstance(results1, Exception):
|
||||||
|
print(f" ✗ Task 1 raised exception: {results1}")
|
||||||
|
return False
|
||||||
|
if isinstance(results2, Exception):
|
||||||
|
print(f" ✗ Task 2 raised exception: {results2}")
|
||||||
|
return False
|
||||||
|
|
||||||
|
total_success = sum(1 for r in results1 if r.success) + sum(1 for r in results2 if r.success)
|
||||||
|
total_requests = len(results1) + len(results2)
|
||||||
|
|
||||||
|
print(f" ✓ {total_success}/{total_requests} concurrent requests succeeded")
|
||||||
|
|
||||||
|
if total_success >= total_requests * 0.7: # Allow 30% failure for concurrent stress
|
||||||
|
print(" ✓ Concurrent arun_many test passed")
|
||||||
|
return True
|
||||||
|
else:
|
||||||
|
print(f" ✗ Too many concurrent failures")
|
||||||
|
return False
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
print(f" ✗ Concurrent test failed: {e}")
|
||||||
|
import traceback
|
||||||
|
traceback.print_exc()
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
async def main():
|
||||||
|
"""Run all smoke tests"""
|
||||||
|
print("=" * 60)
|
||||||
|
print("CDP Concurrency Smoke Tests")
|
||||||
|
print("=" * 60)
|
||||||
|
|
||||||
|
results = []
|
||||||
|
|
||||||
|
# Run tests sequentially
|
||||||
|
results.append(await test_basic_cdp())
|
||||||
|
results.append(await test_arun_many_cdp())
|
||||||
|
results.append(await test_concurrent_arun_many())
|
||||||
|
|
||||||
|
print("\n" + "=" * 60)
|
||||||
|
passed = sum(results)
|
||||||
|
total = len(results)
|
||||||
|
|
||||||
|
if passed == total:
|
||||||
|
print(f"✓ All {total} smoke tests passed!")
|
||||||
|
print("=" * 60)
|
||||||
|
return 0
|
||||||
|
else:
|
||||||
|
print(f"✗ {total - passed}/{total} smoke tests failed")
|
||||||
|
print("=" * 60)
|
||||||
|
return 1
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
exit_code = asyncio.run(main())
|
||||||
|
sys.exit(exit_code)
|
||||||
282
tests/browser/test_cdp_concurrency.py
Normal file
282
tests/browser/test_cdp_concurrency.py
Normal file
@@ -0,0 +1,282 @@
|
|||||||
|
"""
|
||||||
|
Test CDP browser concurrency with arun_many.
|
||||||
|
|
||||||
|
This test suite validates that the fixes for concurrent page creation
|
||||||
|
in managed browsers (CDP mode) work correctly, particularly:
|
||||||
|
1. Always creating new pages instead of reusing
|
||||||
|
2. Page lock serialization prevents race conditions
|
||||||
|
3. Multiple concurrent arun_many calls work correctly
|
||||||
|
"""
|
||||||
|
|
||||||
|
# Standard library imports
|
||||||
|
import asyncio
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
|
||||||
|
# Third-party imports
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
# Add the project root to Python path
|
||||||
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../..')))
|
||||||
|
|
||||||
|
# Local imports
|
||||||
|
from crawl4ai import AsyncWebCrawler, BrowserConfig, CacheMode, CrawlerRunConfig
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_cdp_concurrent_arun_many_basic():
|
||||||
|
"""
|
||||||
|
Test basic concurrent arun_many with CDP browser.
|
||||||
|
This tests the fix for always creating new pages.
|
||||||
|
"""
|
||||||
|
browser_config = BrowserConfig(
|
||||||
|
use_managed_browser=True,
|
||||||
|
headless=True,
|
||||||
|
verbose=False
|
||||||
|
)
|
||||||
|
|
||||||
|
urls = [
|
||||||
|
"https://example.com",
|
||||||
|
"https://www.python.org",
|
||||||
|
"https://httpbin.org/html",
|
||||||
|
]
|
||||||
|
|
||||||
|
config = CrawlerRunConfig(cache_mode=CacheMode.BYPASS)
|
||||||
|
|
||||||
|
async with AsyncWebCrawler(config=browser_config) as crawler:
|
||||||
|
# Run arun_many - should create new pages for each URL
|
||||||
|
results = await crawler.arun_many(urls=urls, config=config)
|
||||||
|
|
||||||
|
# Verify all URLs were crawled successfully
|
||||||
|
assert len(results) == len(urls), f"Expected {len(urls)} results, got {len(results)}"
|
||||||
|
|
||||||
|
for i, result in enumerate(results):
|
||||||
|
assert result is not None, f"Result {i} is None"
|
||||||
|
assert result.success, f"Result {i} failed: {result.error_message}"
|
||||||
|
assert result.status_code == 200, f"Result {i} has status {result.status_code}"
|
||||||
|
assert len(result.html) > 0, f"Result {i} has empty HTML"
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_cdp_multiple_sequential_arun_many():
|
||||||
|
"""
|
||||||
|
Test multiple sequential arun_many calls with CDP browser.
|
||||||
|
Each call should work correctly without interference.
|
||||||
|
"""
|
||||||
|
browser_config = BrowserConfig(
|
||||||
|
use_managed_browser=True,
|
||||||
|
headless=True,
|
||||||
|
verbose=False
|
||||||
|
)
|
||||||
|
|
||||||
|
urls_batch1 = [
|
||||||
|
"https://example.com",
|
||||||
|
"https://httpbin.org/html",
|
||||||
|
]
|
||||||
|
|
||||||
|
urls_batch2 = [
|
||||||
|
"https://www.python.org",
|
||||||
|
"https://example.org",
|
||||||
|
]
|
||||||
|
|
||||||
|
config = CrawlerRunConfig(cache_mode=CacheMode.BYPASS)
|
||||||
|
|
||||||
|
async with AsyncWebCrawler(config=browser_config) as crawler:
|
||||||
|
# First batch
|
||||||
|
results1 = await crawler.arun_many(urls=urls_batch1, config=config)
|
||||||
|
assert len(results1) == len(urls_batch1)
|
||||||
|
for result in results1:
|
||||||
|
assert result.success, f"First batch failed: {result.error_message}"
|
||||||
|
|
||||||
|
# Second batch - should work without issues
|
||||||
|
results2 = await crawler.arun_many(urls=urls_batch2, config=config)
|
||||||
|
assert len(results2) == len(urls_batch2)
|
||||||
|
for result in results2:
|
||||||
|
assert result.success, f"Second batch failed: {result.error_message}"
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_cdp_concurrent_arun_many_stress():
|
||||||
|
"""
|
||||||
|
Stress test: Multiple concurrent arun_many calls with CDP browser.
|
||||||
|
This is the key test for the concurrency fix - ensures page lock works.
|
||||||
|
"""
|
||||||
|
browser_config = BrowserConfig(
|
||||||
|
use_managed_browser=True,
|
||||||
|
headless=True,
|
||||||
|
verbose=False
|
||||||
|
)
|
||||||
|
|
||||||
|
# Create multiple batches of URLs
|
||||||
|
num_batches = 3
|
||||||
|
urls_per_batch = 3
|
||||||
|
|
||||||
|
batches = [
|
||||||
|
[f"https://httpbin.org/delay/{i}?batch={batch}"
|
||||||
|
for i in range(urls_per_batch)]
|
||||||
|
for batch in range(num_batches)
|
||||||
|
]
|
||||||
|
|
||||||
|
config = CrawlerRunConfig(cache_mode=CacheMode.BYPASS)
|
||||||
|
|
||||||
|
async with AsyncWebCrawler(config=browser_config) as crawler:
|
||||||
|
# Run multiple arun_many calls concurrently
|
||||||
|
tasks = [
|
||||||
|
crawler.arun_many(urls=batch, config=config)
|
||||||
|
for batch in batches
|
||||||
|
]
|
||||||
|
|
||||||
|
# Execute all batches in parallel
|
||||||
|
all_results = await asyncio.gather(*tasks, return_exceptions=True)
|
||||||
|
|
||||||
|
# Verify no exceptions occurred
|
||||||
|
for i, results in enumerate(all_results):
|
||||||
|
assert not isinstance(results, Exception), f"Batch {i} raised exception: {results}"
|
||||||
|
assert len(results) == urls_per_batch, f"Batch {i}: expected {urls_per_batch} results, got {len(results)}"
|
||||||
|
|
||||||
|
# Verify each result
|
||||||
|
for j, result in enumerate(results):
|
||||||
|
assert result is not None, f"Batch {i}, result {j} is None"
|
||||||
|
# Some may fail due to network/timing, but should not crash
|
||||||
|
if result.success:
|
||||||
|
assert len(result.html) > 0, f"Batch {i}, result {j} has empty HTML"
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_cdp_page_isolation():
|
||||||
|
"""
|
||||||
|
Test that pages are properly isolated - changes to one don't affect another.
|
||||||
|
This validates that we're creating truly independent pages.
|
||||||
|
"""
|
||||||
|
browser_config = BrowserConfig(
|
||||||
|
use_managed_browser=True,
|
||||||
|
headless=True,
|
||||||
|
verbose=False
|
||||||
|
)
|
||||||
|
|
||||||
|
url = "https://example.com"
|
||||||
|
|
||||||
|
# Use different JS codes to verify isolation
|
||||||
|
config1 = CrawlerRunConfig(
|
||||||
|
cache_mode=CacheMode.BYPASS,
|
||||||
|
js_code="document.body.setAttribute('data-test', 'page1');"
|
||||||
|
)
|
||||||
|
|
||||||
|
config2 = CrawlerRunConfig(
|
||||||
|
cache_mode=CacheMode.BYPASS,
|
||||||
|
js_code="document.body.setAttribute('data-test', 'page2');"
|
||||||
|
)
|
||||||
|
|
||||||
|
async with AsyncWebCrawler(config=browser_config) as crawler:
|
||||||
|
# Run both configs concurrently
|
||||||
|
results = await crawler.arun_many(
|
||||||
|
urls=[url, url],
|
||||||
|
configs=[config1, config2]
|
||||||
|
)
|
||||||
|
|
||||||
|
assert len(results) == 2
|
||||||
|
assert results[0].success and results[1].success
|
||||||
|
|
||||||
|
# Both should succeed with their own modifications
|
||||||
|
# (We can't directly check the data-test attribute, but success indicates isolation)
|
||||||
|
assert 'Example Domain' in results[0].html
|
||||||
|
assert 'Example Domain' in results[1].html
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_cdp_with_different_viewport_sizes():
|
||||||
|
"""
|
||||||
|
Test concurrent crawling with different viewport configurations.
|
||||||
|
Ensures context/page creation handles different configs correctly.
|
||||||
|
"""
|
||||||
|
browser_config = BrowserConfig(
|
||||||
|
use_managed_browser=True,
|
||||||
|
headless=True,
|
||||||
|
verbose=False
|
||||||
|
)
|
||||||
|
|
||||||
|
url = "https://example.com"
|
||||||
|
|
||||||
|
# Different viewport sizes (though in CDP mode these may be limited)
|
||||||
|
configs = [
|
||||||
|
CrawlerRunConfig(cache_mode=CacheMode.BYPASS),
|
||||||
|
CrawlerRunConfig(cache_mode=CacheMode.BYPASS),
|
||||||
|
CrawlerRunConfig(cache_mode=CacheMode.BYPASS),
|
||||||
|
]
|
||||||
|
|
||||||
|
async with AsyncWebCrawler(config=browser_config) as crawler:
|
||||||
|
results = await crawler.arun_many(
|
||||||
|
urls=[url] * len(configs),
|
||||||
|
configs=configs
|
||||||
|
)
|
||||||
|
|
||||||
|
assert len(results) == len(configs)
|
||||||
|
for i, result in enumerate(results):
|
||||||
|
assert result.success, f"Config {i} failed: {result.error_message}"
|
||||||
|
assert len(result.html) > 0
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_cdp_error_handling_concurrent():
|
||||||
|
"""
|
||||||
|
Test that errors in one concurrent request don't affect others.
|
||||||
|
This ensures proper isolation and error handling.
|
||||||
|
"""
|
||||||
|
browser_config = BrowserConfig(
|
||||||
|
use_managed_browser=True,
|
||||||
|
headless=True,
|
||||||
|
verbose=False
|
||||||
|
)
|
||||||
|
|
||||||
|
urls = [
|
||||||
|
"https://example.com", # Valid
|
||||||
|
"https://this-domain-definitely-does-not-exist-12345.com", # Invalid
|
||||||
|
"https://httpbin.org/html", # Valid
|
||||||
|
]
|
||||||
|
|
||||||
|
config = CrawlerRunConfig(cache_mode=CacheMode.BYPASS)
|
||||||
|
|
||||||
|
async with AsyncWebCrawler(config=browser_config) as crawler:
|
||||||
|
results = await crawler.arun_many(urls=urls, config=config)
|
||||||
|
|
||||||
|
assert len(results) == len(urls)
|
||||||
|
|
||||||
|
# First and third should succeed
|
||||||
|
assert results[0].success, "First URL should succeed"
|
||||||
|
assert results[2].success, "Third URL should succeed"
|
||||||
|
|
||||||
|
# Second may fail (invalid domain)
|
||||||
|
# But its failure shouldn't affect the others
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_cdp_large_batch():
|
||||||
|
"""
|
||||||
|
Test handling a larger batch of URLs to ensure scalability.
|
||||||
|
"""
|
||||||
|
browser_config = BrowserConfig(
|
||||||
|
use_managed_browser=True,
|
||||||
|
headless=True,
|
||||||
|
verbose=False
|
||||||
|
)
|
||||||
|
|
||||||
|
# Create 10 URLs
|
||||||
|
num_urls = 10
|
||||||
|
urls = [f"https://httpbin.org/delay/0?id={i}" for i in range(num_urls)]
|
||||||
|
|
||||||
|
config = CrawlerRunConfig(cache_mode=CacheMode.BYPASS)
|
||||||
|
|
||||||
|
async with AsyncWebCrawler(config=browser_config) as crawler:
|
||||||
|
results = await crawler.arun_many(urls=urls, config=config)
|
||||||
|
|
||||||
|
assert len(results) == num_urls
|
||||||
|
|
||||||
|
# Count successes
|
||||||
|
successes = sum(1 for r in results if r.success)
|
||||||
|
# Allow some failures due to network issues, but most should succeed
|
||||||
|
assert successes >= num_urls * 0.8, f"Only {successes}/{num_urls} succeeded"
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
# Run tests with pytest
|
||||||
|
pytest.main([__file__, "-v", "-s"])
|
||||||
@@ -364,5 +364,19 @@ async def test_network_error_handling():
|
|||||||
async with AsyncPlaywrightCrawlerStrategy() as strategy:
|
async with AsyncPlaywrightCrawlerStrategy() as strategy:
|
||||||
await strategy.crawl("https://invalid.example.com", config)
|
await strategy.crawl("https://invalid.example.com", config)
|
||||||
|
|
||||||
|
@pytest.mark.asyncio
|
||||||
|
async def test_remove_overlay_elements(crawler_strategy):
|
||||||
|
config = CrawlerRunConfig(
|
||||||
|
remove_overlay_elements=True,
|
||||||
|
delay_before_return_html=5,
|
||||||
|
)
|
||||||
|
|
||||||
|
response = await crawler_strategy.crawl(
|
||||||
|
"https://www2.hm.com/en_us/index.html",
|
||||||
|
config
|
||||||
|
)
|
||||||
|
assert response.status_code == 200
|
||||||
|
assert "Accept all cookies" not in response.html
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
pytest.main([__file__, "-v"])
|
pytest.main([__file__, "-v"])
|
||||||
Reference in New Issue
Block a user