diff --git a/grunt.js b/grunt.js index c7fe8e94a..170f58663 100644 --- a/grunt.js +++ b/grunt.js @@ -71,7 +71,7 @@ module.exports = function(grunt) { version = "6.0"; } var app = "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator" + version + ".sdk/Applications/MobileSafari.app"; - startAppium(app, function() {}, this.async()); + startAppium(app, true, function() {}, this.async()); }); grunt.registerTask('downloadApp', "Download UICatalog", function() { var done = this.async(); diff --git a/sample-code/examples/python/simple.py b/sample-code/examples/python/simple.py index 901c0c800..e5278ae31 100644 --- a/sample-code/examples/python/simple.py +++ b/sample-code/examples/python/simple.py @@ -19,13 +19,13 @@ class TestSequenceFunctions(unittest.TestCase): 'TestApp.app') app = os.path.abspath(app) self.driver = webdriver.Remote( - command_executor='http://127.0.0.1:4723/wd/hub', - desired_capabilities={ - 'browserName': 'iOS', - 'platform': 'Mac', - 'version': '6.0', - 'app': app - }) + command_executor='http://127.0.0.1:4723/wd/hub', + desired_capabilities={ + 'browserName': 'iOS', + 'platform': 'Mac', + 'version': '6.0', + 'app': app + }) self._values = [] def _populate(self):