@@ -204,30 +204,20 @@ class Driver
204
204
# The amount to sleep in seconds before every webdriver http call.
205
205
attr_accessor :global_webdriver_http_sleep
206
206
207
- # Creates a new driver.
208
- # :device is :android or :ios
207
+ # Creates a new driver
209
208
#
210
209
# ```ruby
211
- # # Options include:
212
- # :app_path, :app_name, :app_package, :app_activity,
213
- # :app_wait_activity, :sauce_username, :sauce_access_key,
214
- # :port, :os, :debug
215
- #
216
210
# require 'rubygems'
217
211
# require 'appium_lib'
218
212
#
213
+ # # platformName can be a string or a symbol.
214
+ #
219
215
# # Start iOS driver
220
- # app = { device: : ios, app_path : '/path/to/MyiOS.app'}
221
- # Appium::Driver.new(app ).start_driver
216
+ # opts = { caps: { platformName: : ios, app : '/path/to/MyiOS.app' } }
217
+ # Appium::Driver.new(opts ).start_driver
222
218
#
223
219
# # Start Android driver
224
- # apk = { device: :android
225
- # app_path: '/path/to/the.apk',
226
- # app_package: 'com.example.pkg',
227
- # app_activity: 'act.Start',
228
- # app_wait_activity: 'act.Start'
229
- # }
230
- #
220
+ # opts = { caps: { platformName: :android, app: '/path/to/my.apk' } }
231
221
# Appium::Driver.new(apk).start_driver
232
222
# ```
233
223
#
@@ -261,13 +251,13 @@ def initialize opts={}
261
251
262
252
# https://code.google.com/p/selenium/source/browse/spec-draft.md?repo=mobile
263
253
@device = @caps [ :platformName ]
264
- @device = @device . downcase . strip if @device
254
+ @device = @device . is_a? ( Symbol ) ? @device : @device . downcase . strip . intern if @device
265
255
raise "Device must be set. Not found in options: #{ opts } " unless @device
266
- raise 'platformName must be Android or iOS' unless %w[ android ios ] . include? ( @device )
256
+ raise 'platformName must be Android or iOS' unless [ : android, : ios] . include? ( @device )
267
257
268
258
# load common methods
269
259
extend Appium ::Common
270
- if @device == ' android'
260
+ if @device == : android
271
261
# load Android specific methods
272
262
extend Appium ::Android
273
263
else
0 commit comments