Edited example UI tests with appium

This commit is contained in:
butomo1989
2017-03-01 13:30:36 +01:00
parent c5a3cc834e
commit e2b24dc170
4 changed files with 4 additions and 8 deletions
@@ -9,13 +9,12 @@ class MSiteFirefoxAndroidUITests(unittest.TestCase):
desired_caps = {
'platformName': 'Android',
'deviceName': 'Android Emulator',
'platformVersion': '4.2',
# For emulator type armeabi, please use browser apk :
# /root/browser_apk/firefox_51.0-2015466281_min_android4.0.3_armeabi-v7a.apk
'app': '/root/browser_apk/firefox_51.0-2015466284_min_android4.0.3_x86.apk',
'appPackage': 'org.mozilla.firefox',
'appActivity': 'org.mozilla.gecko.LauncherActivity',
'avd': 'emulator_4.2.2'
'avd': 'nexus_5_5.0'
}
self.driver = webdriver.Remote('http://127.0.0.1:4723/wd/hub', desired_caps)