@dklompmaker @copyleftdev @KeithPatch
A set of wrappers to simplify the setup, and usage of appium calls to tap, swip, and send key events.
Simply install the requirement into your package.
pip install coeus-test-appium
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)