Files
appium/sample-code/examples/python/android2.py

38 lines
1.0 KiB
Python

import os
from selenium import webdriver
# Returns abs path relative to this file and not cwd
PATH = lambda p: 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('../../../sample-code/apps/ApiDemos/bin/ApiDemos-debug.apk')
desired_caps['app-package'] = 'com.example.android.apis'
desired_caps['app-activity'] = '.ApiDemos'
driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps)
el = driver.find_element_by_xpath('//text[contains(@value, "Animat")]')
assert el.text == "Animation"
el = driver.find_element_by_tag_name("text")
assert el.text == "API Demos"
el = driver.find_element_by_name("App")
el.click()
els = driver.find_elements_by_tag_name("text")
assert els[2].text == "Activity"
driver.back()
el = driver.find_element_by_class_name("android.widget.ListView")
js_params = {"element": el.id, "text": "Views"}
driver.execute_script("mobile: scrollTo", js_params)
driver.quit()