- 新增 switch_to_webview/switch_to_native 切换视图。 - 新增 config_loader.py 配置文件系统 - 优化 conftest.py,支持获取设备信息和默认参数。 - 优化 run_appium.py - 更新 README.md - 其他优化
30 lines
364 B
Plaintext
30 lines
364 B
Plaintext
# Python-generated files
|
|
__pycache__/
|
|
*.py[oc]
|
|
build/
|
|
dist/
|
|
wheels/
|
|
*.egg-info
|
|
.idea
|
|
|
|
# --- 依赖与环境 ---
|
|
.venv
|
|
venv/
|
|
node_modules/
|
|
uv.lock
|
|
# --- 屏蔽outputs ---
|
|
outputs/logs/*.log
|
|
outputs/logs/backups/*
|
|
outputs/screenshots/
|
|
|
|
# --- Allure 报告 ---
|
|
temp/
|
|
reports/
|
|
.allure/
|
|
|
|
# --- pytest缓存 ---
|
|
.pytest_cache/
|
|
.allure_cache/
|
|
|
|
# --- 配置文件 ---
|
|
.env |