init: 初始化项目

- 创建了基本的项目结构
- 添加了 .gitignore 文件
- 配置了基本的开发环境
- 添加清华镜像源
- 设置了基础的文件夹和文件(如 commons, utils, POM, pytest.ini)

项目说明:
- [项目名称]:Web自动化测试
- [项目描述]:基于pytest,selenium的自动化测试工具
- [开发环境]:Python
This commit is contained in:
2025-04-14 23:05:39 +08:00
commit 92d06dd9cf
24 changed files with 1662 additions and 0 deletions

21
pyproject.toml Normal file
View File

@@ -0,0 +1,21 @@
[project]
name = "webautotest"
version = "0.1.0"
description = "Web自动化测试框架"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
]
[dependency-groups]
dev = [
"pydantic-settings>=2.8.1",
"pytest>=8.3.5",
"pytest-xlsx>=0.5.1",
"selenium>=4.30.0",
"tomlkit>=0.13.2",
]
[[tool.uv.index]]
url = "https://mirrors.cloud.tencent.com/pypi/simple"
default = true