Metadata-Version: 2.1
Name: airobots
Version: 1.0.6
Summary: UI Test Automation Framework for Games and Apps on Android/iOS/Windows/Linux/Web
Home-page: https://github.com/BSTester/Airobots
Author: 贝克街的捉虫师
Author-email: forpeng@foxmail.com
License: Apache License 2.0
Project-URL: Source, https://github.com/BSTester/Airobots
Description: # Airobots
        
        整合了Airtest Project和RobotFramework框架的方法。
        
        另外整合了HTTPRunner，实现一个框架同时支持Android、IOS、WEB、API的自动化测试及性能测试(HTTPRunner提供的基于Locust的压力生成器，不带资源监控)。
        
        安装框架依赖包, 执行
        
        ```
        pip install airobots -i https://mirrors.aliyun.com/pypi/simple
        ```
        
        如果安装失败或Python版本大于3.7, 请先安装这个版本的Airtest
        
        ```
        pip install https://github.com/BSTester/Airtest/archive/master.zip          # 
        ```
        
        运行WEB测试，需要安装ChromeDriver，请自行下载安装，或安装node之后执行 `npm install -g chromedriver` 安装
        
        ## 执行测试 
        
        Allure 报告
        ```
        airobots -t api ./API/Case/Path/ --alluredir=Results             # API测试
        airobots -t web ./Web/Case/Path/ --alluredir=Results             # Web测试
        airobots -t android ./Android/Case/Path/ --alluredir=Results     # Android测试
        airobots -t ios ./IOS/Case/Path/ --alluredir=Results             # IOS测试
        ```
        
        HTML 报告
        ```
        airobots -t api ./API/Case/Path/ --html=Results/report.html          # API测试
        airobots -t web ./Web/Case/Path/ --html=Results/report.html          # Web测试
        airobots -t android ./Android/Case/Path/ --html=Results/report.html  # Android测试
        airobots -t ios ./IOS/Case/Path/ --html=Results/report.html          # IOS测试
        ```
        
        演示项目: https://github.com/BSTester/AirobotsDemo
Keywords: automation,automated-test,game,android,ios,windows,linux,web
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.5, <4
Description-Content-Type: text/markdown
