├── .github └── ISSUE_TEMPLATE │ ├── bug-report-chinese.md │ └── bug-report.md └── README.md /.github/ISSUE_TEMPLATE/bug-report-chinese.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report Chinese 3 | about: 给我们提bug 4 | 5 | --- 6 | 7 | (请尽量按照下面提示内容填写,有助于我们快速定位和解决问题,感谢配合。**否则直接关闭。**) 8 | 9 | **(重要!根据问题类型选择分类)** 10 | * 图像识别相关问题 -> https://github.com/AirtestProject/Airtest/issues 11 | * 控件识别、树状结构、poco库报错 -> https://github.com/AirtestProject/Poco/issues 12 | * 测试开发环境AirtestIDE使用问题(本软件) -> 本页面 13 | 14 | **详细描述问题bug:** 15 | bug描述 16 | 17 | **复现步骤:** 18 | 19 | 20 | **python 版本:** `python3.x` 21 | 22 | **操作系统:** `Windows7 64bit` 23 | 24 | **手机设备信息:** 25 | - 手机型号: 26 | - Android系统版本号: [e.g. Android 8.1] 27 | - (别的信息) 28 | 29 | **其他相关信息补充** 30 | (例如在linux ubuntu16.04上运行异常,在windows上正常等信息。) 31 | - AirtestIDE版本号: 32 | 33 | **截屏** 34 | 强烈建议带上截图,包括IDE本身的截图和后面的黑窗口的报错信息的截图(尽量完整)。 35 | 36 | 37 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | 5 | --- 6 | 7 | Remove any following parts if does not have details about 8 | 9 | **Describe the bug** 10 | A clear and concise description of what the bug is. 11 | 12 | **Screenshots** 13 | A **screenshot** is strongly recommended. Please include both AirtestIDE window and the **black console window**. 14 | 15 | **To Reproduce** 16 | Steps to reproduce the behaviour: 17 | 1. Go to '...' 18 | 2. Click on '....' 19 | 3. Scroll down to '....' 20 | 4. See error 21 | 22 | **Expected behaviour** 23 | A clear and concise description of what you expected to happen. 24 | 25 | **AirtestIDE version:** `1.0.15` 26 | 27 | **Platform:** `Windows7 64bit, etc.` 28 | 29 | **Smartphone (please complete the following information):** 30 | - Device: [e.g. google pixel 2] 31 | - OS: [e.g. Android 8.1] 32 | - more information if have 33 | 34 | **Additional context** 35 | Add any other context about the problem here. 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | AirtestIDE 2 | ================= 3 | 4 | Cross platform UI test automation IDE for games and apps 5 | 6 | [Get Started from Airtest Project Homepage](http://airtest.netease.com/) 7 | 8 | This repo serves as issue tracker of Airtest IDE. 9 | 10 | --- 11 | 12 | 13 | 跨平台的UI自动化测试编辑器 14 | 15 | [请从Airtest Project的官网开始入门](http://airtest.netease.com/) 16 | 17 | 本仓库作为Airtest IDE的issue tracker。 18 | --------------------------------------------------------------------------------