Skip to content

Commit

Permalink
fix: update docs
Browse files Browse the repository at this point in the history
Description:

Log:
  • Loading branch information
mikigo committed May 21, 2024
1 parent 16769fc commit 405065d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@

**深度社区:<a href="https://github.com/linuxdeepin/youqu" target="_blank">linuxdeepin</a> | <a href="https://gitee.com/deepin-community/youqu" target="_blank">deepin-community</a>**

**欧拉社区: <a href="https://gitee.com/src-openeuler/youqu" target="_blank">src-openeuler</a>**
**欧拉社区:<a href="https://gitee.com/src-openeuler/youqu" target="_blank">src-openeuler</a>**

**官方文档: <a href="https://youqu.uniontech.com" target="_blank">https://youqu.uniontech.com</a>**
**官方文档:<a href="https://youqu.uniontech.com" target="_blank">https://youqu.uniontech.com</a>**

**欢迎加入 [YouQu官方兴趣小组](https://youqu.uniontech.com/SIG.html)**



---

YouQu(有趣)是统信公司(Deepin/UOS)开源的一个 Linux 操作系统的自动化测试框架,支持多元化元素定位和断言、用例标签化管理和执行、强大的日志和报告输出等特色功能,同时完美兼容 X11、Wayland 显示协议,环境部署简单,操作易上手。🔥
Expand Down Expand Up @@ -99,6 +97,9 @@ $ youqu-startproject my_project
```shell
$ cd my_project
$ bash env.sh
# 使用的默认密码是 1;
# 您可以使用 -p 选项传入密码:bash env.sh -p ${my_password};
# 也可以修改配置文件 setting/globalconfig.ini 里面的 PASSWORD 配置项;
```

## [创建 APP 工程]()
Expand All @@ -120,7 +121,7 @@ my_project
...    ├── ...
```

在你的远程 Git 仓库中,只需要保存 APP 工程这部分代码即可。
**在你的远程 Git 仓库中,只需要保存 APP 工程这部分代码即可。**

`autotest_deepin_some` 是你的 APP 工程名称,在此基础上,你可以快速的开始你的 AT 项目,更重要的是确保创建工程的规范性。

Expand Down
2 changes: 1 addition & 1 deletion docs/指南/简介/快速开始.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ my_project
   └── ui.ini # 相对位移元素定位方案的配置文件
```

在你的远程 Git 仓库中,只需要保存 APP 工程这部分代码即可。
**在你的远程 Git 仓库中,只需要保存 APP 工程这部分代码即可。**

`autotest_deepin_some` 是你的 APP 工程名称,在此基础上,你可以快速的开始你的 AT 项目,更重要的是确保创建工程的规范性。

Expand Down
2 changes: 1 addition & 1 deletion setting/globalconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ class DisplayServer:
top_cmd = "top -b -d 3 -w 512"

GITHUB_URL = "https://github.com/linuxdeepin/youqu"
DOCS_URL = "https://linuxdeepin.github.io/youqu"
DOCS_URL = "https://youqu.uniontech.com/"
PyPI_URL = "https://pypi.org/project/youqu"

LETMEGO_DEBUG = True
Expand Down
2 changes: 1 addition & 1 deletion src/button_center.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ def get_lastest_window_id(self, app_name: str) -> int:
except Exception as exc:
raise ApplicationStartError(f"{app_name, exc}") from exc
else:
info = self.wwininfo.window_info().get(self.app_name)
info = WaylandWindowInfo().window_info().get(self.app_name)
if isinstance(info, dict):
return info.get("window_id")
elif isinstance(info, list):
Expand Down

0 comments on commit 405065d

Please sign in to comment.