Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
shelllet committed Feb 3, 2024
1 parent 95714f9 commit bc25e02
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 27 deletions.
1 change: 1 addition & 0 deletions docx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
1. 添加 [点击 * 网格](./actions/mouse/CellClick.md)
2. [参数](./actions/control/Param.md) 动作添加索引参数。
3. 添加 [*键盘输入*](./actions/android/Adbkeyboard.md),支持中文输入。
4. 修复:删除有多个入口动作时崩溃问题。

### Deprecated:

Expand Down
18 changes: 5 additions & 13 deletions docx/actions/control/For.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,20 @@
# 循环
用来迭代相应的列表数据,遍历列表的每一个元素,也可称为*循环*

![For](./images/2022-11-17_184608.png ':size=90%')
![For](./images/03.png ':size=90%')

## 子流程

> 支持
> 支持,每个被迭代的数据都会依次传入子动作中。
## 运行参数

* Times:循环次数
* 次数
> 循环次数

## 输出



## 脚本调用

```python
import simple


```

## 示例
## 资源

19 changes: 6 additions & 13 deletions docx/actions/control/If.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,22 @@
# 判断
条件判断,相当于`python` 中的 `if`语句,该动作有两条分支,如果条件成立,执行左边的流程分支,否则,执行右边的流程分支
条件判断,可用来判``相当于`python` 中的 `if`语句,该动作有两条分支,如果条件成立,执行左边的流程分支,否则,执行右边的流程分支


![action](./images/2022-11-17_184608.png ':size=90%')
![If](./images/01.png ':size=90%')

## 子流程

> 不支持
## 运行参数

* Value: 可判断的对象
* 数据
> 可判断的对象,如*Boolean* 类型 。

## 输出

> [Boolean](./types/Boolean.md), 成立流程走左边分支,否则走右键分支
> 条件成立流程走左边分支,否则走右键分支
## 脚本调用

```python
import simple


```

## 示例
## 资源

2 changes: 1 addition & 1 deletion docx/actions/control/IsEmpty.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 判空
判断 *容器* 或者 *列表* 是否为空
判断 *容器* 或者 *列表* 是否为空*容器*或者 *列表*无法通过 *[判断](./If.md)* 来判断是否为空。


## 子流程
Expand Down
Binary file modified docx/actions/control/images/01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docx/actions/control/images/013.png
Binary file not shown.
Binary file removed docx/actions/control/images/02.png
Binary file not shown.
Binary file added docx/actions/control/images/03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bc25e02

Please sign in to comment.