Metadata-Version: 2.1
Name: appium-oc
Version: 0.0.6
Summary: A collection of appium-based operations
Author-email: WangYun <294961525@qq.com>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Appium-Python-Client

# AppiumOC

AppiumOC 是围绕 appium 搭建的操作集合

***注意：当前AppiumOC是围绕 Android 实现的，因此某些方法可能无法很好的兼容iOS。***

## 调用方法
在调用之前需要自行配置 Appium Server 环境。当准备好环境之后便可以通过类似以下方法使用 AppiumOC。
```
from appium_oc.appium_oc import AppiumOC

class Demo(AppiumOC):
    def __init__(self, driver = None):
        super().__init__(driver)
```
