Skip to content

Commit 0408cc0

Browse files
Fix driver docs
1 parent e72c170 commit 0408cc0

File tree

1 file changed

+9
-19
lines changed

1 file changed

+9
-19
lines changed

lib/appium_lib/driver.rb

+9-19
Original file line numberDiff line numberDiff line change
@@ -204,30 +204,20 @@ class Driver
204204
# The amount to sleep in seconds before every webdriver http call.
205205
attr_accessor :global_webdriver_http_sleep
206206

207-
# Creates a new driver.
208-
# :device is :android or :ios
207+
# Creates a new driver
209208
#
210209
# ```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-
#
216210
# require 'rubygems'
217211
# require 'appium_lib'
218212
#
213+
# # platformName can be a string or a symbol.
214+
#
219215
# # 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
222218
#
223219
# # 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' } }
231221
# Appium::Driver.new(apk).start_driver
232222
# ```
233223
#
@@ -261,13 +251,13 @@ def initialize opts={}
261251

262252
# https://code.google.com/p/selenium/source/browse/spec-draft.md?repo=mobile
263253
@device = @caps[:platformName]
264-
@device = @device.downcase.strip if @device
254+
@device = @device.is_a?(Symbol) ? @device : @device.downcase.strip.intern if @device
265255
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)
267257

268258
# load common methods
269259
extend Appium::Common
270-
if @device == 'android'
260+
if @device == :android
271261
# load Android specific methods
272262
extend Appium::Android
273263
else

0 commit comments

Comments
 (0)