gitextract_mfg_aafz/ ├── .gitattributes ├── .gitignore ├── AutoLink.py ├── CodeStats.py ├── INSTALL.md ├── LICENSE ├── README.md ├── UPDATEING.md ├── auto/ │ ├── __init__.py │ ├── configuration.py │ ├── exceptions.py │ ├── settings.py │ ├── version.py │ └── www/ │ ├── __init__.py │ ├── api/ │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── case.py │ │ ├── editor.py │ │ ├── keyword.py │ │ ├── project.py │ │ ├── settings.py │ │ ├── suite.py │ │ ├── task.py │ │ └── user.py │ ├── app.py │ ├── blueprints.py │ ├── static/ │ │ ├── css/ │ │ │ ├── auto.css │ │ │ ├── base.css │ │ │ └── sign.css │ │ └── js/ │ │ ├── auto.js │ │ ├── autocomplete.js │ │ └── highlight.js │ └── templates/ │ ├── dashboard.html │ ├── default.html │ ├── editor.html │ ├── login.html │ ├── report.html │ ├── scheduler.html │ ├── task_list.html │ ├── user.html │ ├── view_img.html │ └── welcome.html ├── docs/ │ ├── README.md │ ├── 上传和下载RobotFramework用例.md │ ├── 关键字概要说明.md │ ├── 如何使用自动提示快捷输入关键字.md │ ├── 如何使用调度管理.md │ ├── 如何创建HTTP接口测试用例.md │ ├── 如何创建测试项目.md │ ├── 如何查看关键字详细文档.md │ ├── 如何管理测试项目中用例顺序.md │ ├── 如何调用Python自定义库.md │ ├── 如何运行测试项目.md │ ├── 安装与启动.md │ ├── 查看测试报告.md │ └── 配置SMTP服务及邮件通知.md ├── driver/ │ └── readme.md ├── keyword/ │ ├── AppiumLibrary.xml │ ├── BuiltIn.xml │ ├── Collections.xml │ ├── DatabaseLibrary.xml │ ├── DateTime.xml │ ├── Dialogs.xml │ ├── OperatingSystem.xml │ ├── Process.xml │ ├── RequestsLibrary.xml │ ├── SSHLibrary.xml │ ├── Screenshot.xml │ ├── SeleniumLibrary.xml │ ├── String.xml │ ├── Telnet.xml │ └── XML.xml ├── licenses/ │ ├── LICENSE-CodeMirror │ ├── LICENSE-jquery │ ├── LICENSE-wide.html │ └── license_freeware-easyui.txt ├── requirements.txt ├── utils/ │ ├── __init__.py │ ├── file.py │ ├── help.py │ ├── parsing.py │ ├── resource.py │ └── run.py └── version.txt