所有站点 with_retry 在最后一次重试失败、reset 之前自动截图, 保存到 logs/screenshots/。网页站点走 Playwright page.screenshot(), 安能走 CDP Page.captureScreenshot。截图失败绝不阻塞任务流程。 - paths.py: 新增 SCREENSHOT_DIR (BASE_DIR/logs/screenshots/) - runtime.py: 新增 capture_error_screenshot() 工具函数 - .gitignore: 新增 logs/ 忽略规则 Co-Authored-By: Claude <noreply@anthropic.com>
69 lines
571 B
Plaintext
69 lines
571 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual Environment
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Project specific
|
|
downloads/
|
|
output/
|
|
state/
|
|
logs/
|
|
*.xlsx
|
|
*.xls
|
|
*.log
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# Local secrets / credentials
|
|
config.yaml
|
|
|
|
# Playwright
|
|
.playwright/
|
|
.playwright-cli/
|
|
ms-playwright/
|
|
|
|
# Claude
|
|
.claude/
|
|
|
|
# Memory
|
|
memory/
|
|
MEMORY.md
|
|
|
|
Archive/ |