mirror of
https://github.com/budtmo/docker-android.git
synced 2025-12-08 18:25:50 +00:00
30 lines
905 B
Python
30 lines
905 B
Python
"""e2e test to test sample android application inside docker-android"""
|
|
from unittest import TestCase
|
|
|
|
from appium import webdriver
|
|
|
|
|
|
class TestE2EApp(TestCase):
|
|
|
|
def setUp(self):
|
|
desired_caps = {
|
|
'platformName': 'Android',
|
|
'deviceName': 'Android Emulator',
|
|
'automationName': 'UIAutomator2',
|
|
'app': '/root/tmp/sample_apk_debug.apk'
|
|
}
|
|
self.driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps)
|
|
|
|
def test_calculation(self):
|
|
text_fields = self.driver.find_elements_by_class_name('android.widget.EditText')
|
|
text_fields[0].send_keys(4)
|
|
text_fields[1].send_keys(6)
|
|
|
|
btn_calculate = self.driver.find_element_by_class_name('android.widget.Button')
|
|
btn_calculate.click()
|
|
|
|
self.assertEqual('10', text_fields[2].text)
|
|
|
|
def tearDown(self):
|
|
self.driver.quit()
|