@@ -210,7 +210,17 @@ class Driver
210
210
# made available via the driver_attributes method
211
211
212
212
# The amount to sleep in seconds before every webdriver http call.
213
- attr_accessor :global_webdriver_http_sleep
213
+ attr_accessor :global_webdriver_http_sleep ,
214
+ :caps ,
215
+ :custom_url ,
216
+ :export_session ,
217
+ :default_wait ,
218
+ :last_waits ,
219
+ :sauce_username ,
220
+ :sauce_access_key ,
221
+ :appium_port ,
222
+ :appium_device ,
223
+ :appium_debug
214
224
215
225
# Creates a new driver
216
226
#
@@ -251,7 +261,7 @@ def initialize opts={}
251
261
@sauce_username = nil if !@sauce_username || ( @sauce_username . is_a? ( String ) && @sauce_username . empty? )
252
262
@sauce_access_key = appium_lib_opts . fetch :sauce_access_key , ENV [ 'SAUCE_ACCESS_KEY' ]
253
263
@sauce_access_key = nil if !@sauce_access_key || ( @sauce_access_key . is_a? ( String ) && @sauce_access_key . empty? )
254
- @port = appium_lib_opts . fetch :port , 4723
264
+ @appium_port = appium_lib_opts . fetch :port , 4723
255
265
256
266
# Path to the .apk, .app or .app.zip.
257
267
# The path can be local or remote for Sauce.
@@ -260,10 +270,10 @@ def initialize opts={}
260
270
end
261
271
262
272
# https://code.google.com/p/selenium/source/browse/spec-draft.md?repo=mobile
263
- @device = @caps [ :platformName ]
264
- @device = @device . is_a? ( Symbol ) ? @device : @device . downcase . strip . intern if @device
265
- raise "platformName must be set. Not found in options: #{ opts } " unless @device
266
- raise 'platformName must be Android or iOS' unless [ :android , :ios ] . include? ( @device )
273
+ @appium_device = @caps [ :platformName ]
274
+ @appium_device = @appium_device . is_a? ( Symbol ) ? @appium_device : @appium_device . downcase . strip . intern if @appium_device
275
+ raise "platformName must be set. Not found in options: #{ opts } " unless @appium_device
276
+ raise 'platformName must be Android or iOS' unless [ :android , :ios ] . include? ( @appium_device )
267
277
268
278
# load common methods
269
279
extend Appium ::Common
@@ -280,12 +290,12 @@ def initialize opts={}
280
290
281
291
# enable debug patch
282
292
# !!'constant' == true
283
- @debug = appium_lib_opts . fetch :debug , !!defined? ( Pry )
293
+ @appium_debug = appium_lib_opts . fetch :debug , !!defined? ( Pry )
284
294
285
- if @debug
295
+ if @appium_debug
286
296
ap opts unless opts . empty?
287
- puts "Debug is: #{ @debug } "
288
- puts "Device is: #{ @device } "
297
+ puts "Debug is: #{ @appium_debug } "
298
+ puts "Device is: #{ @appium_device } "
289
299
patch_webdriver_bridge
290
300
end
291
301
@@ -316,9 +326,9 @@ def driver_attributes
316
326
last_waits : @last_waits ,
317
327
sauce_username : @sauce_username ,
318
328
sauce_access_key : @sauce_access_key ,
319
- port : @port ,
320
- device : @device ,
321
- debug : @debug ,
329
+ port : @appium_port ,
330
+ device : @appium_device ,
331
+ debug : @appium_debug ,
322
332
}
323
333
324
334
# Return duplicates so attributes are immutable
@@ -329,7 +339,7 @@ def driver_attributes
329
339
end
330
340
331
341
def device_is_android?
332
- @device == :android
342
+ @appium_device == :android
333
343
end
334
344
335
345
# Returns the server's version info
@@ -379,7 +389,7 @@ def server_url
379
389
if !@sauce_username . nil? && !@sauce_access_key . nil?
380
390
"http://#{ @sauce_username } :#{ @sauce_access_key } @ondemand.saucelabs.com:80/wd/hub"
381
391
else
382
- "http://127.0.0.1:#{ @port } /wd/hub"
392
+ "http://127.0.0.1:#{ @appium_port } /wd/hub"
383
393
end
384
394
end
385
395
0 commit comments