File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -254,6 +254,8 @@ def initialize opts={}
254
254
opts . each_pair { |k , v | tmp_opts [ k . to_s . downcase . strip . intern ] = v }
255
255
opts = tmp_opts
256
256
257
+ @raw_capabilities = opts . fetch ( :raw , { } )
258
+
257
259
@custom_url = opts . fetch :server_url , false
258
260
259
261
@compress_xml = opts [ :compress_xml ] ? true : false
@@ -398,8 +400,7 @@ def android_capabilities
398
400
:'app-package' => @app_package ,
399
401
:'app-activity' => @app_activity ,
400
402
:'app-wait-activity' => @app_wait_activity || @app_activity ,
401
- fastClear : @fast_clear
402
- } . merge ( @android_coverage )
403
+ } . merge ( @android_coverage ) . merge ( @raw_capabilities )
403
404
end
404
405
405
406
# @private
@@ -411,7 +412,7 @@ def ios_capabilities
411
412
device : @device ,
412
413
name : @app_name || 'Ruby Console iOS Appium' ,
413
414
:'device-orientation' => @device_orientation
414
- }
415
+ } . merge ( @raw_capabilities )
415
416
end
416
417
417
418
# @private
Original file line number Diff line number Diff line change @@ -35,8 +35,12 @@ require 'rubygems'
35
35
require ' appium_lib'
36
36
37
37
# Start iOS driver
38
- app = { device: :ios , app_path: ' /path/to/MyiOS.app' }
39
- Appium ::Driver .new (app).start_driver
38
+
39
+ # use appium's specific capability names
40
+ appium_capabilities = { launchTimeout: 123 }
41
+ # there are also built in capabilities such as device that don't require 'raw'
42
+ caps = { device: :ios , app_path: ' /Users/user/woven/ruby_lib_ios/UICatalog.app' , raw: appium_capabilities }
43
+ Appium ::Driver .new (caps).start_driver
40
44
41
45
# Start Android driver
42
46
apk = {
You can’t perform that action at this time.
0 commit comments