Skip to content

A python driver for Appium to communicate with Chorus based on Official Appium Python Client

Notifications You must be signed in to change notification settings

AndurilLi/AppiumDriver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

#AppiumDriver

A python driver for Appium to communicate with Chorus based on Official Appium Python Client

##Usage Remote Version

>from AppiumDriver import AppiumServer
>server = AppiumServer("<remoteip>", "<hostname>", "<hostpassword>")
>server.start_server()
>driver = server._get_driver("<.app path>", "iOS")
>....
>driver.quit()
>server.stop_server()

Local Version

>from AppiumDriver import AppiumServer
>server = AppiumServer("localhost")
>server.start_server()
>driver = server._get_driver("<apk path>", "Android", platformVersion="18", deviceName="<adb device name>")
>....
>driver.quit()
>server.stop_server()

About

A python driver for Appium to communicate with Chorus based on Official Appium Python Client

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages