mirror of
https://github.com/appium/appium.git
synced 2026-01-14 06:10:01 -06:00
29 lines
749 B
Python
29 lines
749 B
Python
import os
|
|
from time import sleep
|
|
|
|
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.2'
|
|
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)
|
|
|
|
print driver.get_window_size()
|
|
elem = driver.find_element_by_name('Graphics')
|
|
elem.click()
|
|
elem = driver.find_element_by_name('Arcs')
|
|
elem.click()
|
|
driver.quit()
|