some small fixes

This commit is contained in:
Jonathan Lipps
2013-01-25 15:41:07 -08:00
parent 4a5af40258
commit abb7f98920
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -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();
+7 -7
View File
@@ -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):