1 parent 5123999 commit 38f4360Copy full SHA for 38f4360
1 file changed
sample-code/examples/python/sauce_connect.py
@@ -101,16 +101,16 @@ def setUp(self):
101
self.setUpTunnel()
102
103
desired_capabilities={
104
- 'browserName': '',
105
- 'platformName': 'Android',
+ 'browserName': 'safari',
+ 'platformName': 'iOS',
106
'deviceName': 'iPhone Simulator',
107
- 'platformVersion': '6.1',
108
- 'app': app,
+ 'platformVersion': '7.1',
+ 'appiumVersion': '1.2.2',
109
'name': 'Appium Python iOS Test (Connect)'
110
})
111
112
self.driver = webdriver.Remote(
113
- desired_capabilities=caps,
+ desired_capabilities=desired_capabilities,
114
command_executor="http://%s:%s@ondemand.saucelabs.com:80/wd/hub" % (SAUCE_USERNAME, SAUCE_ACCESS_KEY)
115
)
116
self.driver.implicitly_wait(30)
0 commit comments