mirror of
https://github.com/appium/appium.git
synced 2026-05-04 01:11:11 -05:00
some small fixes
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user