mirror of
https://github.com/appium/appium.git
synced 2026-01-13 22:00:05 -06:00
59 lines
1.7 KiB
Python
59 lines
1.7 KiB
Python
import os
|
|
from time import sleep
|
|
|
|
import unittest
|
|
|
|
from appium 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)
|
|
)
|
|
|
|
class SimpleAndroidTests(unittest.TestCase):
|
|
def setUp(self):
|
|
desired_caps = {}
|
|
desired_caps['platformName'] = 'Android'
|
|
desired_caps['platformVersion'] = '4.2'
|
|
desired_caps['deviceName'] = 'Android Emulator'
|
|
desired_caps['app'] = PATH(
|
|
'../../../sample-code/apps/ApiDemos/bin/ApiDemos-debug.apk'
|
|
)
|
|
|
|
self.driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps)
|
|
|
|
def tearDown(self):
|
|
# end the session
|
|
self.driver.quit()
|
|
|
|
def test_find_elements(self):
|
|
el = self.driver.find_element_by_accessibility_id('Graphics')
|
|
el.click()
|
|
el = self.driver.find_element_by_accessibility_id('Arcs')
|
|
self.assertIsNotNone(el)
|
|
|
|
self.driver.back()
|
|
|
|
el = self.driver.find_element_by_accessibility_id("App")
|
|
self.assertIsNotNone(el)
|
|
|
|
els = self.driver.find_elements_by_android_uiautomator("new UiSelector().clickable(true)")
|
|
self.assertGreaterEqual(12, len(els))
|
|
|
|
self.driver.find_element_by_android_uiautomator('text("API Demos")')
|
|
|
|
|
|
def test_simple_actions(self):
|
|
el = self.driver.find_element_by_accessibility_id('Graphics')
|
|
el.click()
|
|
|
|
el = self.driver.find_element_by_accessibility_id('Arcs')
|
|
el.click()
|
|
|
|
self.driver.find_element_by_android_uiautomator('new UiSelector().text("Graphics/Arcs")')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
suite = unittest.TestLoader().loadTestsFromTestCase(SimpleAndroidTests)
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|