Skip to content

Commit

Permalink
修正文档
Browse files Browse the repository at this point in the history
  • Loading branch information
kaluluosi committed Oct 23, 2023
1 parent 923c168 commit fa999ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions docs/advance/advance.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## 数据驱动测试

数据驱动测试是Robotframework的特性之一,详情可以看官方文档[测试模板](https://robotframework-userguide-cn.readthedocs.io/zh_CN/latest/CreatingTestData/CreatingTestCases.html?highlight=template#test-templates)
数据驱动测试是Robot Framework的特性之一,详情可以看官方文档[测试模板](https://robotframework-userguide-cn.readthedocs.io/zh_CN/latest/CreatingTestData/CreatingTestCases.html?highlight=template#test-templates)

!!! Question
讲数据驱动测试之前先问大家一个问题:
Expand Down Expand Up @@ -137,7 +137,7 @@

## 自定义测试库

Robotframework默认内置了不少测试库
Robot Framework默认内置了不少测试库

|测试库|说明|
|---|---|
Expand All @@ -153,7 +153,7 @@ Robotframework默认内置了不少测试库。
|Telnet|telnet测试库|
|XML|xml操作测试库|

Robotframework的脚本的基本语法并不像python那么自由灵活,比如像字符串格式化、分割字符串(splite)你都没办法在RobotFramework脚本里直接调用。
Robot Framework的脚本的基本语法并不像python那么自由灵活,比如像字符串格式化、分割字符串(splite)你都没办法在RobotFramework脚本里直接调用。

```robotframework
*** Test Cases ***
Expand All @@ -174,7 +174,7 @@ Library String
${片段} Split String ${文本} ,
```

但是Robotframework提供的测试库并不都能满足我们的需要,这时候我们就要自己去扩展自己的测试库。
但是Robot Framework提供的测试库并不都能满足我们的需要,这时候我们就要自己去扩展自己的测试库。

!!! Tip
PocoLibrary就是Robot Framework的测试库。
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Robotframework-Airtest

`Robotframework-Airtest``Robotframework``Airtest`测试库封装,同时提供了一整套的自动化测试方案,可以快速搭建基于Robot Framework的自动化测试项目。
`Robotframework-Airtest``Robot Framework``Airtest`测试库封装,同时提供了一整套的自动化测试方案,可以快速搭建基于Robot Framework的自动化测试项目。

!!! note
目前只封装了`poco`的接口
Expand Down Expand Up @@ -147,7 +147,7 @@ ra vmg

**数据驱动测试**

Robotframework提供的测试模板(Template)功能,可以将测试用例变成以空格为分隔符的表格,传入模板关键字中执行测试。这个测试用例不会因为其中一个测试数据失败而终止,而是会执行所有的测试数据,然后汇总所有测试结果。全部都通过的时候这条用例通过,只要有一个失败用例就失败。
Robot Framework提供的测试模板(Template)功能,可以将测试用例变成以空格为分隔符的表格,传入模板关键字中执行测试。这个测试用例不会因为其中一个测试数据失败而终止,而是会执行所有的测试数据,然后汇总所有测试结果。全部都通过的时候这条用例通过,只要有一个失败用例就失败。

```robotframework
*** Test Cases ***
Expand Down
6 changes: 3 additions & 3 deletions docs/quick_start/0_install.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ Commands:

## IDE推荐使用VSCODE

VSCode有Robotframework插件支持,可以调试断点语法提示。
VSCode有Robot Framework插件支持,可以调试断点语法提示。
![](asset/2023-10-21-14-23-33.png)

Robotframework插件[robotframework-lsp](https://marketplace.visualstudio.com/items?itemName=robocorp.robotframework-lsp)
Robot Framework插件[robotframework-lsp](https://marketplace.visualstudio.com/items?itemName=robocorp.robotframework-lsp)
![](asset/2023-10-21-14-24-51.png)

!!! warning
PyCharm也有Robotframework插件,但是我的模板项目是以VSCode为IDE设计的,因此要在PyCharm上用我的模板项目你需要自己去修改。
PyCharm也有Robot Framework插件,但是我的模板项目是以VSCode为IDE设计的,因此要在PyCharm上用我的模板项目你需要自己去修改。

0 comments on commit fa999ae

Please sign in to comment.