- 创建了基本的项目结构与目录 - 添加并完善了.gitignore 配置 - 配置了基于 Volta 的开发环境 (Node 24.12.0, npm 11.6.2) - 集成了 Appium 3.x 本地化环境及 APPIUM_HOME 隔离方案 - 添加了服务管理脚本 run_appium.py 项目说明: - [项目名称]:AppAutoTest - [项目描述]:基于 Appium 3.x 的移动端自动化测试框架,采用环境本地化策略。 - [开发环境]:Node.js 24.12.0 (Volta 锁定), Python 3.10+, Appium 3.x
14 lines
276 B
TOML
14 lines
276 B
TOML
[project]
|
|
name = "appautotest"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"appium-python-client>=5.2.4",
|
|
]
|
|
|
|
[[tool.uv.index]]
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
|
default = true
|