importosimporttimefromseleniumimportwebdriver# Returns abs path relative to this file and not cwd
PATH=lambdap:os.path.abspath(os.path.join(os.path.dirname(__file__),p))desired_caps={}desired_caps['device']='Android'desired_caps['browserName']=''desired_caps['version']='4.3'#desired_caps['app'] = PATH('d:/ContactManager.apk')
desired_caps['app-package']='com.example.android.contactmanager'desired_caps['app-activity']='.ContactManager'driver=webdriver.Remote('http://127.0.0.1:4723/wd/hub',desired_caps)printdriver.get_window_size()elem=driver.find_element_by_name('Graphics')elem.click()elem=driver.find_element_by_name('Arcs')elem.click()driver.quit()