Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix spelling error #45

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/AT用例筛选指北.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ AT 用例筛选标准,是挑选合适的文本用例进行自动化用例转

自动化脚本在系统关机、注销、重启之后是会停止运行的;此类用例可以做自动化,但是同样需要做专项方案,用例执行过程的处理逻辑完全不同。

后续自动化需要公关的点
后续自动化需要攻关的点

- 自动化脚本在本机运行,自动化测试框架至少需要提供以下功能:

Expand Down
2 changes: 1 addition & 1 deletion docs/框架功能介绍/标签化管理.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ python3 manage.py run --ifixed yes

### 4. 设计思路

上面介绍 `Pytest` 框架提供的标签功能 mark,使用时需要为每一个用例添加标签装饰器,则操作复杂,可维护性差,其根本问题就是标签分散在每一条用例的装饰器上,难以集中维护;于是乎将所有标签使用 `csv` 文件进行集中管理,并通过 `Pytest` 的钩子函数,读取 `csv` 文件,动态添加标签到用中
上面介绍 `Pytest` 框架提供的标签功能 mark,使用时需要为每一个用例添加标签装饰器,则操作复杂,可维护性差,其根本问题就是标签分散在每一条用例的装饰器上,难以集中维护;于是乎将所有标签使用 `csv` 文件进行集中管理,并通过 `Pytest` 的钩子函数,读取 `csv` 文件,动态添加标签到用例中

### 5. CSV文件格式

Expand Down
Loading