Metadata-Version: 2.1
Name: coeus-test-appium
Version: 0.1.10
Summary: Appium bindings for the coeus-python-framework.
Home-page: https://github.com/AgeOfLearning/coeus-appium-bindings
Author: Devon Klompmaker
Author-email: devon.klompmaker@aofl.com
License: BSD 3-Clause License
Keywords: coeus-test-appium
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: coeus-test (>=0.1.4)
Requires-Dist: coeus-test-unity (>=0.1.2)
Requires-Dist: Appium-Python-Client

# Coeus-Appium-Bindings

[pypi-build-status]: https://img.shields.io/pypi/v/coeus-test-appium.svg
[travis-ci-status]: https://img.shields.io/travis/AgeOfLearning/coeus-appium-bindings.svg

[![pypi][pypi-build-status]](https://pypi.python.org/pypi/coeus-test-appium)
[![travis][travis-ci-status]](https://travis-ci.org/AgeOfLearning/coeus-appium-bindings)

## About
A set of wrappers to simplify the setup, and usage of appium calls to tap, swip, and send key events. 

## Setup
Simply install the requirement into your package.

```python
pip install coeus-test-appium
```

## AppiumDriver
Utilize the AppiumDriver class to create a connection to the server.

```python
driver = AppiumDriver.AppiumDriver("ios" | "android")
# add additional capabilities...
driver.capabilities['app'] = "/my/Path/to/apk"
driver.connect()

# send commands to device...
driver.tap(23, 400)
driver.swipe(23, 400, 100, 400)
```

