Updated Sample and End2End Tests
This commit is contained in:
parent
dcf196ec4a
commit
47e968927a
|
@ -1,5 +1,7 @@
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
from time import sleep
|
||||||
|
|
||||||
from appium import webdriver
|
from appium import webdriver
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,13 +15,24 @@ class MSiteChromeAndroidUITests(unittest.TestCase):
|
||||||
'deviceName': 'Android Emulator',
|
'deviceName': 'Android Emulator',
|
||||||
'appPackage': 'com.android.chrome',
|
'appPackage': 'com.android.chrome',
|
||||||
'appActivity': 'com.google.android.apps.chrome.Main',
|
'appActivity': 'com.google.android.apps.chrome.Main',
|
||||||
'browserName': 'chrome',
|
'browserName': 'chrome'
|
||||||
'ignore-certificate-errors': True
|
|
||||||
}
|
}
|
||||||
self.driver = webdriver.Remote('http://127.0.0.1:4444/wd/hub', desired_caps)
|
self.driver = webdriver.Remote('http://10.161.128.186:4444/wd/hub', desired_caps)
|
||||||
|
|
||||||
def test_open_url(self):
|
def test_open_url(self):
|
||||||
self.driver.get('http://targeturl.com')
|
self.driver.get('http://google.com')
|
||||||
|
|
||||||
|
# Handle Welcome Home
|
||||||
|
self.driver.switch_to.context('NATIVE_APP')
|
||||||
|
self.driver.find_element_by_id('terms_accept').click()
|
||||||
|
self.driver.find_element_by_id('negative_button').click()
|
||||||
|
|
||||||
|
# Search for Github
|
||||||
|
self.driver.switch_to.context('CHROMIUM')
|
||||||
|
search = self.driver.find_element_by_name('q')
|
||||||
|
search.send_keys('butomo1989 docker-android')
|
||||||
|
search.submit()
|
||||||
|
sleep(2)
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
self.driver.quit()
|
self.driver.quit()
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
|
from time import sleep
|
||||||
|
|
||||||
from appium import webdriver
|
from appium import webdriver
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,10 +17,15 @@ class MSiteDefaultBrowserAndroidUITests(unittest.TestCase):
|
||||||
'appActivity': 'com.android.browser.BrowserActivity',
|
'appActivity': 'com.android.browser.BrowserActivity',
|
||||||
'browserName': 'browser'
|
'browserName': 'browser'
|
||||||
}
|
}
|
||||||
self.driver = webdriver.Remote('http://127.0.0.1:4444/wd/hub', desired_caps)
|
self.driver = webdriver.Remote('http://10.161.128.186:4444/wd/hub', desired_caps)
|
||||||
|
|
||||||
def test_open_url(self):
|
def test_open_url(self):
|
||||||
self.driver.get('http://targeturl.com')
|
self.driver.get('http://google.com')
|
||||||
|
|
||||||
|
search = self.driver.find_element_by_name('q')
|
||||||
|
search.send_keys('butomo1989 docker-android')
|
||||||
|
search.submit()
|
||||||
|
sleep(2)
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
self.driver.quit()
|
self.driver.quit()
|
||||||
|
|
|
@ -121,7 +121,8 @@ def appium_run(avd_name: str):
|
||||||
subprocess.check_call('xterm -T "{title}" -n "{title}" -e \"{cmd}\"'.format(title=title, cmd=cmd), shell=True)
|
subprocess.check_call('xterm -T "{title}" -n "{title}" -e \"{cmd}\"'.format(title=title, cmd=cmd), shell=True)
|
||||||
|
|
||||||
|
|
||||||
def create_node_config(avd_name: str, browser_name: str, appium_host: str, appium_port: int, selenium_host: str, selenium_port: int):
|
def create_node_config(avd_name: str, browser_name: str, appium_host: str, appium_port: int, selenium_host: str,
|
||||||
|
selenium_port: int):
|
||||||
"""
|
"""
|
||||||
Create custom node config file in json format to be able to connect with selenium server.
|
Create custom node config file in json format to be able to connect with selenium server.
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ from unittest import TestCase
|
||||||
from appium import webdriver
|
from appium import webdriver
|
||||||
|
|
||||||
|
|
||||||
class TestE2EApp(TestCase):
|
class TestE2EAndroidApk(TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
desired_caps = {
|
desired_caps = {
|
||||||
|
|
|
@ -18,5 +18,16 @@ class TestE2EChrome(TestCase):
|
||||||
def test_open_url(self):
|
def test_open_url(self):
|
||||||
self.driver.get('http://google.com')
|
self.driver.get('http://google.com')
|
||||||
|
|
||||||
|
# Handle Welcome Home
|
||||||
|
self.driver.switch_to.context('NATIVE_APP')
|
||||||
|
self.driver.find_element_by_id('terms_accept').click()
|
||||||
|
self.driver.find_element_by_id('negative_button').click()
|
||||||
|
|
||||||
|
# Search for Github
|
||||||
|
self.driver.switch_to.context('CHROMIUM')
|
||||||
|
search = self.driver.find_element_by_name('q')
|
||||||
|
search.send_keys('butomo1989 docker-android')
|
||||||
|
search.submit()
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
self.driver.quit()
|
self.driver.quit()
|
||||||
|
|
Loading…
Reference in a new issue