coeus-test-appium

Appium bindings for the coeus-python-framework.


Keywords
coeus-test-appium
License
BSD-1-Clause
Install
pip install coeus-test-appium==0.1.10

Documentation

Coeus-Appium-Bindings

pypi travis

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.

pip install coeus-test-appium

AppiumDriver

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

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)