mirror of
https://github.com/appium/appium.git
synced 2026-04-25 04:48:42 -05:00
Update python samples to 1.0
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
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_name("App")
|
||||
self.assertIsNotNone(el)
|
||||
|
||||
els = self.driver.find_elements_by_android_uiautomator("new UiSelector().clickable(true)")
|
||||
self.assertEqual(12, len(els))
|
||||
|
||||
els = self.driver.find_elements_by_android_uiautomator('new UiSelector().enabled(true)')
|
||||
self.assertEqual(20, len(els))
|
||||
self.assertEqual("API Demos", els[7].text)
|
||||
|
||||
|
||||
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()
|
||||
|
||||
main = self.driver.find_elements_by_android_uiautomator('new UiSelector().clickable(false)')[7]
|
||||
self.assertEqual("Graphics/Arcs", main.text)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
suite = unittest.TestLoader().loadTestsFromTestCase(SimpleAndroidTests)
|
||||
unittest.TextTestRunner(verbosity=2).run(suite)
|
||||
Reference in New Issue
Block a user