appium_lib 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8f7affb652d9661da57195e3a2f904f476dc9148
4
- data.tar.gz: 38d15ff99fd98a893d3d75cef3b7449c406bc231
3
+ metadata.gz: 0944a3abf48d261f975c81b469bdaf46318f9353
4
+ data.tar.gz: 41c4711b2e2fe4c9504275b3d40daa196de86800
5
5
  SHA512:
6
- metadata.gz: e310452ff41d1333feaa2ab8b1d7f9c310362e5a9d6b8ab48db82c502e24843d776a7153213ef3de152db2fa22e267cbb312fec6398affc9d20941333f759528
7
- data.tar.gz: 9f56997abffa4f348c4cbb1bbc4385d27ab8c2bc77e4007e01c2500984e0aa79ce5b81eedda188c9665b8915554e9b2b3c62b3a2c383128abba93d1ab5d7d833
6
+ metadata.gz: 65b423f595981f54bac419fcef55b98c05f7bfdd1684d1d367c646a399ecbc4a2f756b3785c1b44d764678c98e671cd29b8d624f55694b21481725ac5dc92750
7
+ data.tar.gz: 1dd704278ea0f27e601cd7b2f1353d0d8b3074795c19c308cc95899bcb5d251bc427ed8b04b16496b65a71f9c31681d73e8803f38d7f9567c8cdf7a2c1d9f9a0
Binary file
@@ -74,4 +74,35 @@ describe 'android/helper' do
74
74
  2.times { back }
75
75
  end
76
76
 
77
+ t '_parse_current_app_line' do
78
+ # test values from appium's test/unit/adb-specs.js
79
+ expected = [
80
+ # api 16 line
81
+ ['mFocusedApp=AppWindowToken{417ee228 token=Token{41602f78 ActivityRecord{41798a08 io.appium.android.apis/.ApiDemos}}}',
82
+ 'io.appium.android.apis',
83
+ '.ApiDemos'],
84
+ # api 18 line
85
+ ['mFocusedApp=AppWindowToken{41744660 token=Token{41ac7198 ActivityRecord{41af55c8 u0 io.appium.android.apis/.ApiDemos}}}',
86
+ 'io.appium.android.apis',
87
+ '.ApiDemos'],
88
+ # api 19
89
+ ['mFocusedApp=AppWindowToken{b40af858 token=Token{b3e2ce38 ActivityRecord{b3eb47d8 u0 io.appium.android.apis/.ApiDemos t6}}}',
90
+ 'io.appium.android.apis',
91
+ '.ApiDemos'
92
+ # api 16 selendroid
93
+ ],
94
+ ['mFocusedApp=AppWindowToken{4157a2c8 token=Token{41582628 ActivityRecord{415821f0 com.android.launcher/com.android.launcher2.Launcher}}}',
95
+ 'com.android.launcher',
96
+ 'com.android.launcher2.Launcher'
97
+ ]
98
+ ]
99
+
100
+ expected.each do |line, package, activity|
101
+ parsed = _parse_current_app_line(line)
102
+ raise "failed to parse #{line}" if parsed.nil?
103
+ parsed.package.must_equal package
104
+ parsed.activity.must_equal activity
105
+ parsed.am_start.must_equal package + '/' + activity
106
+ end
107
+ end
77
108
  end
data/docs/android_docs.md CHANGED
@@ -1,4 +1,4 @@
1
- ##### [load_appium_txt](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L71)
1
+ ##### [load_appium_txt](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L71)
2
2
 
3
3
  > def self.load_appium_txt opts={}
4
4
 
@@ -27,7 +27,7 @@ __Returns:__
27
27
 
28
28
  --
29
29
 
30
- ##### [symbolize_keys](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L141)
30
+ ##### [symbolize_keys](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L141)
31
31
 
32
32
  > def self.symbolize_keys hash
33
33
 
@@ -38,7 +38,7 @@ https://github.com/rails/docrails/blob/a3b1105ada3da64acfa3843b164b14b734456a50/
38
38
 
39
39
  --
40
40
 
41
- ##### [promote_singleton_appium_methods](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L151)
41
+ ##### [promote_singleton_appium_methods](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L151)
42
42
 
43
43
  > def self.promote_singleton_appium_methods main_module
44
44
 
@@ -46,7 +46,7 @@ https://github.com/rails/docrails/blob/a3b1105ada3da64acfa3843b164b14b734456a50/
46
46
 
47
47
  --
48
48
 
49
- ##### [promote_appium_methods](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L180)
49
+ ##### [promote_appium_methods](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L180)
50
50
 
51
51
  > def self.promote_appium_methods class_array
52
52
 
@@ -64,7 +64,7 @@ __Parameters:__
64
64
 
65
65
  --
66
66
 
67
- ##### [global_webdriver_http_sleep](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L213)
67
+ ##### [global_webdriver_http_sleep](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L213)
68
68
 
69
69
  > def global_webdriver_http_sleep
70
70
 
@@ -72,7 +72,7 @@ The amount to sleep in seconds before every webdriver http call.
72
72
 
73
73
  --
74
74
 
75
- ##### [global_webdriver_http_sleep=](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L213)
75
+ ##### [global_webdriver_http_sleep=](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L213)
76
76
 
77
77
  > def global_webdriver_http_sleep=(value)
78
78
 
@@ -80,7 +80,7 @@ The amount to sleep in seconds before every webdriver http call.
80
80
 
81
81
  --
82
82
 
83
- ##### [initialize](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L234)
83
+ ##### [initialize](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L234)
84
84
 
85
85
  > def initialize opts={}
86
86
 
@@ -111,7 +111,7 @@ __Returns:__
111
111
 
112
112
  --
113
113
 
114
- ##### [driver_attributes](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L311)
114
+ ##### [driver_attributes](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L311)
115
115
 
116
116
  > def driver_attributes
117
117
 
@@ -119,7 +119,7 @@ Returns a hash of the driver attributes
119
119
 
120
120
  --
121
121
 
122
- ##### [device_is_android?](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L331)
122
+ ##### [device_is_android?](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L331)
123
123
 
124
124
  > def device_is_android?
125
125
 
@@ -131,7 +131,7 @@ __Returns:__
131
131
 
132
132
  --
133
133
 
134
- ##### [appium_server_version](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L347)
134
+ ##### [appium_server_version](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L347)
135
135
 
136
136
  > def appium_server_version
137
137
 
@@ -152,7 +152,7 @@ __Returns:__
152
152
 
153
153
  --
154
154
 
155
- ##### [absolute_app_path](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L353)
155
+ ##### [absolute_app_path](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L353)
156
156
 
157
157
  > def self.absolute_app_path app_path
158
158
 
@@ -164,7 +164,7 @@ __Returns:__
164
164
 
165
165
  --
166
166
 
167
- ##### [server_url](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L377)
167
+ ##### [server_url](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L377)
168
168
 
169
169
  > def server_url
170
170
 
@@ -176,7 +176,7 @@ __Returns:__
176
176
 
177
177
  --
178
178
 
179
- ##### [restart](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L388)
179
+ ##### [restart](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L388)
180
180
 
181
181
  > def restart
182
182
 
@@ -188,7 +188,7 @@ __Returns:__
188
188
 
189
189
  --
190
190
 
191
- ##### [driver](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L395)
191
+ ##### [driver](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L395)
192
192
 
193
193
  > def driver
194
194
 
@@ -200,7 +200,7 @@ __Returns:__
200
200
 
201
201
  --
202
202
 
203
- ##### [screenshot](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L405)
203
+ ##### [screenshot](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L405)
204
204
 
205
205
  > def screenshot png_save_path
206
206
 
@@ -218,7 +218,7 @@ __Returns:__
218
218
 
219
219
  --
220
220
 
221
- ##### [driver_quit](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L412)
221
+ ##### [driver_quit](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L412)
222
222
 
223
223
  > def driver_quit
224
224
 
@@ -230,7 +230,7 @@ __Returns:__
230
230
 
231
231
  --
232
232
 
233
- ##### [start_driver](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L420)
233
+ ##### [start_driver](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L420)
234
234
 
235
235
  > def start_driver
236
236
 
@@ -242,7 +242,7 @@ __Returns:__
242
242
 
243
243
  --
244
244
 
245
- ##### [no_wait](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L447)
245
+ ##### [no_wait](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L447)
246
246
 
247
247
  > def no_wait
248
248
 
@@ -250,7 +250,7 @@ Set implicit wait and default_wait to zero.
250
250
 
251
251
  --
252
252
 
253
- ##### [set_wait](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L466)
253
+ ##### [set_wait](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L466)
254
254
 
255
255
  > def set_wait timeout=nil
256
256
 
@@ -275,7 +275,7 @@ __Returns:__
275
275
 
276
276
  --
277
277
 
278
- ##### [default_wait](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L484)
278
+ ##### [default_wait](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L484)
279
279
 
280
280
  > def default_wait
281
281
 
@@ -288,7 +288,7 @@ __Returns:__
288
288
 
289
289
  --
290
290
 
291
- ##### [exists](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L500)
291
+ ##### [exists](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L500)
292
292
 
293
293
  > def exists pre_check=0, post_check=@default_wait, &search_block
294
294
 
@@ -314,7 +314,7 @@ __Returns:__
314
314
 
315
315
  --
316
316
 
317
- ##### [execute_script](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L524)
317
+ ##### [execute_script](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L524)
318
318
 
319
319
  > def execute_script script, *args
320
320
 
@@ -332,7 +332,7 @@ __Returns:__
332
332
 
333
333
  --
334
334
 
335
- ##### [find_elements](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L532)
335
+ ##### [find_elements](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L532)
336
336
 
337
337
  > def find_elements *args
338
338
 
@@ -348,7 +348,7 @@ __Returns:__
348
348
 
349
349
  --
350
350
 
351
- ##### [find_element](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L540)
351
+ ##### [find_element](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L540)
352
352
 
353
353
  > def find_element *args
354
354
 
@@ -364,7 +364,7 @@ __Returns:__
364
364
 
365
365
  --
366
366
 
367
- ##### [x](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/driver.rb#L547)
367
+ ##### [x](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/driver.rb#L547)
368
368
 
369
369
  > def x
370
370
 
@@ -377,7 +377,7 @@ __Returns:__
377
377
 
378
378
  --
379
379
 
380
- ##### [NoArgMethods](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L7)
380
+ ##### [NoArgMethods](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L7)
381
381
 
382
382
  > NoArgMethods = {
383
383
 
@@ -385,7 +385,7 @@ __Returns:__
385
385
 
386
386
  --
387
387
 
388
- ##### [app_strings](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L22)
388
+ ##### [app_strings](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L22)
389
389
 
390
390
  > def app_strings
391
391
 
@@ -396,7 +396,7 @@ app_strings #=> "TransitionsTitle"=>"Transitions", "WebTitle"=>"Web"
396
396
 
397
397
  --
398
398
 
399
- ##### [background_app](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L28)
399
+ ##### [background_app](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L28)
400
400
 
401
401
  > def background_app
402
402
 
@@ -405,7 +405,7 @@ This is a blocking application
405
405
 
406
406
  --
407
407
 
408
- ##### [current_activity](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L33)
408
+ ##### [current_activity](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L33)
409
409
 
410
410
  > def current_activity
411
411
 
@@ -413,7 +413,7 @@ This is a blocking application
413
413
 
414
414
  --
415
415
 
416
- ##### [launch](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L35)
416
+ ##### [launch](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L35)
417
417
 
418
418
  > def launch
419
419
 
@@ -421,7 +421,7 @@ Start the simulator and applicaton configured with desired capabilities
421
421
 
422
422
  --
423
423
 
424
- ##### [reset](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L38)
424
+ ##### [reset](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L38)
425
425
 
426
426
  > def reset
427
427
 
@@ -429,7 +429,7 @@ Reset the device, relaunching the application.
429
429
 
430
430
  --
431
431
 
432
- ##### [shake](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L41)
432
+ ##### [shake](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L41)
433
433
 
434
434
  > def shake
435
435
 
@@ -437,7 +437,7 @@ Cause the device to shake
437
437
 
438
438
  --
439
439
 
440
- ##### [toggle_flight_mode](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L44)
440
+ ##### [toggle_flight_mode](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L44)
441
441
 
442
442
  > def toggle_flight_mode
443
443
 
@@ -445,7 +445,7 @@ toggle flight mode on or off
445
445
 
446
446
  --
447
447
 
448
- ##### [complex_find](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L47)
448
+ ##### [complex_find](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L47)
449
449
 
450
450
  > def complex_find
451
451
 
@@ -466,7 +466,7 @@ __Parameters:__
466
466
 
467
467
  --
468
468
 
469
- ##### [hide_keyboard](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L59)
469
+ ##### [hide_keyboard](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L59)
470
470
 
471
471
  > def hide_keyboard
472
472
 
@@ -479,7 +479,7 @@ Defaults to 'Done'.
479
479
 
480
480
  --
481
481
 
482
- ##### [key_event](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L68)
482
+ ##### [key_event](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L68)
483
483
 
484
484
  > def key_event
485
485
 
@@ -493,7 +493,7 @@ __Parameters:__
493
493
 
494
494
  --
495
495
 
496
- ##### [push_file](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L73)
496
+ ##### [push_file](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L73)
497
497
 
498
498
  > def push_file
499
499
 
@@ -507,7 +507,7 @@ __Parameters:__
507
507
 
508
508
  --
509
509
 
510
- ##### [pull_file](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L78)
510
+ ##### [pull_file](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L78)
511
511
 
512
512
  > def pull_file
513
513
 
@@ -524,7 +524,7 @@ __Parameters:__
524
524
 
525
525
  --
526
526
 
527
- ##### [extend_search_contexts](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L290)
527
+ ##### [extend_search_contexts](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L290)
528
528
 
529
529
  > def extend_search_contexts
530
530
 
@@ -532,7 +532,7 @@ __Parameters:__
532
532
 
533
533
  --
534
534
 
535
- ##### [accessiblity_id_find](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L290)
535
+ ##### [accessiblity_id_find](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L290)
536
536
 
537
537
  > def accessiblity_id_find
538
538
 
@@ -544,7 +544,7 @@ find_element/s with their accessibility_id
544
544
 
545
545
  --
546
546
 
547
- ##### [add_touch_actions](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L296)
547
+ ##### [add_touch_actions](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L296)
548
548
 
549
549
  > def add_touch_actions
550
550
 
@@ -552,7 +552,7 @@ find_element/s with their accessibility_id
552
552
 
553
553
  --
554
554
 
555
- ##### [set_context](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L320)
555
+ ##### [set_context](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L320)
556
556
 
557
557
  > def set_context
558
558
 
@@ -567,7 +567,7 @@ __Parameters:__
567
567
 
568
568
  --
569
569
 
570
- ##### [current_context](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L328)
570
+ ##### [current_context](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L328)
571
571
 
572
572
  > def current_context
573
573
 
@@ -579,7 +579,7 @@ __Returns:__
579
579
 
580
580
  --
581
581
 
582
- ##### [available_contexts](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L331)
582
+ ##### [available_contexts](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L331)
583
583
 
584
584
  > def available_contexts
585
585
 
@@ -591,7 +591,7 @@ __Returns:__
591
591
 
592
592
  --
593
593
 
594
- ##### [within_context](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L341)
594
+ ##### [within_context](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L341)
595
595
 
596
596
  > def within_context(context)
597
597
 
@@ -607,7 +607,7 @@ __Parameters:__
607
607
 
608
608
  --
609
609
 
610
- ##### [switch_to_default_context](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/device.rb#L349)
610
+ ##### [switch_to_default_context](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/device.rb#L349)
611
611
 
612
612
  > def switch_to_default_context
613
613
 
@@ -615,7 +615,7 @@ Change to the default context. This is equivalent to `set_context nil`.
615
615
 
616
616
  --
617
617
 
618
- ##### [pinch](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/multi_touch.rb#L30)
618
+ ##### [pinch](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/multi_touch.rb#L30)
619
619
 
620
620
  > def pinch(percentage=25, auto_perform=true)
621
621
 
@@ -634,7 +634,7 @@ __Parameters:__
634
634
 
635
635
  --
636
636
 
637
- ##### [zoom](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/multi_touch.rb#L58)
637
+ ##### [zoom](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/multi_touch.rb#L58)
638
638
 
639
639
  > def zoom(percentage=200, auto_perform=true)
640
640
 
@@ -653,7 +653,7 @@ __Parameters:__
653
653
 
654
654
  --
655
655
 
656
- ##### [initialize](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/multi_touch.rb#L79)
656
+ ##### [initialize](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/multi_touch.rb#L79)
657
657
 
658
658
  > def initialize
659
659
 
@@ -665,7 +665,7 @@ __Returns:__
665
665
 
666
666
  --
667
667
 
668
- ##### [add](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/multi_touch.rb#L85)
668
+ ##### [add](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/multi_touch.rb#L85)
669
669
 
670
670
  > def add(chain)
671
671
 
@@ -677,7 +677,7 @@ __Parameters:__
677
677
 
678
678
  --
679
679
 
680
- ##### [perform](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/multi_touch.rb#L90)
680
+ ##### [perform](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/multi_touch.rb#L90)
681
681
 
682
682
  > def perform
683
683
 
@@ -685,7 +685,7 @@ Ask Appium to perform the actions
685
685
 
686
686
  --
687
687
 
688
- ##### [ACTIONS](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L12)
688
+ ##### [ACTIONS](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L12)
689
689
 
690
690
  > ACTIONS = [:move_to, :long_press, :press, :release, :tap, :wait, :perform]
691
691
 
@@ -693,7 +693,7 @@ Ask Appium to perform the actions
693
693
 
694
694
  --
695
695
 
696
- ##### [COMPLEX_ACTIONS](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L13)
696
+ ##### [COMPLEX_ACTIONS](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L13)
697
697
 
698
698
  > COMPLEX_ACTIONS = [:swipe]
699
699
 
@@ -701,7 +701,7 @@ Ask Appium to perform the actions
701
701
 
702
702
  --
703
703
 
704
- ##### [actions](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L27)
704
+ ##### [actions](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L27)
705
705
 
706
706
  > def actions
707
707
 
@@ -709,7 +709,7 @@ Returns the value of attribute actions
709
709
 
710
710
  --
711
711
 
712
- ##### [initialize](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L29)
712
+ ##### [initialize](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L29)
713
713
 
714
714
  > def initialize
715
715
 
@@ -721,7 +721,7 @@ __Returns:__
721
721
 
722
722
  --
723
723
 
724
- ##### [move_to](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L37)
724
+ ##### [move_to](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L37)
725
725
 
726
726
  > def move_to(opts)
727
727
 
@@ -733,7 +733,7 @@ __Parameters:__
733
733
 
734
734
  --
735
735
 
736
- ##### [long_press](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L47)
736
+ ##### [long_press](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L47)
737
737
 
738
738
  > def long_press(opts)
739
739
 
@@ -751,7 +751,7 @@ __Parameters:__
751
751
 
752
752
  --
753
753
 
754
- ##### [press](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L59)
754
+ ##### [press](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L59)
755
755
 
756
756
  > def press(opts)
757
757
 
@@ -764,7 +764,7 @@ __Parameters:__
764
764
 
765
765
  --
766
766
 
767
- ##### [release](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L70)
767
+ ##### [release](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L70)
768
768
 
769
769
  > def release(opts=nil)
770
770
 
@@ -776,7 +776,7 @@ __Parameters:__
776
776
 
777
777
  --
778
778
 
779
- ##### [tap](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L81)
779
+ ##### [tap](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L81)
780
780
 
781
781
  > def tap(opts)
782
782
 
@@ -788,7 +788,7 @@ __Parameters:__
788
788
 
789
789
  --
790
790
 
791
- ##### [wait](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L90)
791
+ ##### [wait](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L90)
792
792
 
793
793
  > def wait(milliseconds)
794
794
 
@@ -800,7 +800,7 @@ __Parameters:__
800
800
 
801
801
  --
802
802
 
803
- ##### [swipe](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L101)
803
+ ##### [swipe](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L101)
804
804
 
805
805
  > def swipe(opts)
806
806
 
@@ -812,7 +812,7 @@ __Parameters:__
812
812
 
813
813
  --
814
814
 
815
- ##### [perform](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L116)
815
+ ##### [perform](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L116)
816
816
 
817
817
  > def perform
818
818
 
@@ -820,7 +820,7 @@ Ask the driver to perform all actions in this action chain.
820
820
 
821
821
  --
822
822
 
823
- ##### [cancel](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L122)
823
+ ##### [cancel](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L122)
824
824
 
825
825
  > def cancel
826
826
 
@@ -828,7 +828,7 @@ Does nothing, currently.
828
828
 
829
829
  --
830
830
 
831
- ##### [chain_method](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L130)
831
+ ##### [chain_method](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L130)
832
832
 
833
833
  > def chain_method(method, args=nil)
834
834
 
@@ -836,7 +836,7 @@ Does nothing, currently.
836
836
 
837
837
  --
838
838
 
839
- ##### [args_with_ele_ref](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/device/touch_actions.rb#L139)
839
+ ##### [args_with_ele_ref](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/device/touch_actions.rb#L139)
840
840
 
841
841
  > def args_with_ele_ref(args)
842
842
 
@@ -844,7 +844,7 @@ Does nothing, currently.
844
844
 
845
845
  --
846
846
 
847
- ##### [wait](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L33)
847
+ ##### [wait](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L33)
848
848
 
849
849
  > def wait max_wait=30, interval=0.5, &block
850
850
 
@@ -871,7 +871,7 @@ __Returns:__
871
871
 
872
872
  --
873
873
 
874
- ##### [ignore](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L54)
874
+ ##### [ignore](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L54)
875
875
 
876
876
  > def ignore &block
877
877
 
@@ -879,7 +879,7 @@ Return block.call and ignore any exceptions.
879
879
 
880
880
  --
881
881
 
882
- ##### [wait_true](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L69)
882
+ ##### [wait_true](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L69)
883
883
 
884
884
  > def wait_true max_wait=30, interval=0.5, &block
885
885
 
@@ -902,7 +902,7 @@ __Returns:__
902
902
 
903
903
  --
904
904
 
905
- ##### [back](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L89)
905
+ ##### [back](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L89)
906
906
 
907
907
  > def back
908
908
 
@@ -914,7 +914,7 @@ __Returns:__
914
914
 
915
915
  --
916
916
 
917
- ##### [session_id](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L94)
917
+ ##### [session_id](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L94)
918
918
 
919
919
  > def session_id
920
920
 
@@ -922,7 +922,7 @@ For Sauce Labs reporting. Returns the current session id.
922
922
 
923
923
  --
924
924
 
925
- ##### [xpath](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L102)
925
+ ##### [xpath](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L102)
926
926
 
927
927
  > def xpath xpath_str
928
928
 
@@ -938,7 +938,7 @@ __Returns:__
938
938
 
939
939
  --
940
940
 
941
- ##### [xpaths](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L110)
941
+ ##### [xpaths](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L110)
942
942
 
943
943
  > def xpaths xpath_str
944
944
 
@@ -954,7 +954,7 @@ __Returns:__
954
954
 
955
955
  --
956
956
 
957
- ##### [source](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L116)
957
+ ##### [source](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L116)
958
958
 
959
959
  > def source
960
960
 
@@ -966,7 +966,7 @@ __Returns:__
966
966
 
967
967
  --
968
968
 
969
- ##### [get_source](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L134)
969
+ ##### [get_source](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L134)
970
970
 
971
971
  > def get_source
972
972
 
@@ -979,7 +979,7 @@ __Returns:__
979
979
 
980
980
  --
981
981
 
982
- ##### [result](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L141)
982
+ ##### [result](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L141)
983
983
 
984
984
  > def result
985
985
 
@@ -987,7 +987,7 @@ Returns the value of attribute result
987
987
 
988
988
  --
989
989
 
990
- ##### [initialize](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L143)
990
+ ##### [initialize](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L143)
991
991
 
992
992
  > def initialize
993
993
 
@@ -999,7 +999,7 @@ __Returns:__
999
999
 
1000
1000
  --
1001
1001
 
1002
- ##### [reset](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L147)
1002
+ ##### [reset](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L147)
1003
1003
 
1004
1004
  > def reset
1005
1005
 
@@ -1007,7 +1007,7 @@ __Returns:__
1007
1007
 
1008
1008
  --
1009
1009
 
1010
- ##### [start_element](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L152)
1010
+ ##### [start_element](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L152)
1011
1011
 
1012
1012
  > def start_element name, attrs = []
1013
1013
 
@@ -1015,7 +1015,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html
1015
1015
 
1016
1016
  --
1017
1017
 
1018
- ##### [formatted_result](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L158)
1018
+ ##### [formatted_result](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L158)
1019
1019
 
1020
1020
  > def formatted_result
1021
1021
 
@@ -1023,7 +1023,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html
1023
1023
 
1024
1024
  --
1025
1025
 
1026
- ##### [get_page_class](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L169)
1026
+ ##### [get_page_class](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L169)
1027
1027
 
1028
1028
  > def get_page_class
1029
1029
 
@@ -1031,7 +1031,7 @@ Returns a string of class counts of visible elements.
1031
1031
 
1032
1032
  --
1033
1033
 
1034
- ##### [page_class](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L180)
1034
+ ##### [page_class](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L180)
1035
1035
 
1036
1036
  > def page_class
1037
1037
 
@@ -1040,7 +1040,7 @@ Useful for appium_console.
1040
1040
 
1041
1041
  --
1042
1042
 
1043
- ##### [px_to_window_rel](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L190)
1043
+ ##### [px_to_window_rel](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L190)
1044
1044
 
1045
1045
  > def px_to_window_rel opts={}
1046
1046
 
@@ -1052,7 +1052,7 @@ px_to_window_rel x: 50, y: 150
1052
1052
 
1053
1053
  --
1054
1054
 
1055
- ##### [xml_keys](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L207)
1055
+ ##### [xml_keys](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L207)
1056
1056
 
1057
1057
  > def xml_keys target
1058
1058
 
@@ -1068,7 +1068,7 @@ __Returns:__
1068
1068
 
1069
1069
  --
1070
1070
 
1071
- ##### [xml_values](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L215)
1071
+ ##### [xml_values](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L215)
1072
1072
 
1073
1073
  > def xml_values target
1074
1074
 
@@ -1084,7 +1084,7 @@ __Returns:__
1084
1084
 
1085
1085
  --
1086
1086
 
1087
- ##### [resolve_id](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L223)
1087
+ ##### [resolve_id](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L223)
1088
1088
 
1089
1089
  > def resolve_id id
1090
1090
 
@@ -1100,7 +1100,7 @@ __Returns:__
1100
1100
 
1101
1101
  --
1102
1102
 
1103
- ##### [filter](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L229)
1103
+ ##### [filter](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L229)
1104
1104
 
1105
1105
  > def filter
1106
1106
 
@@ -1108,7 +1108,7 @@ __Returns:__
1108
1108
 
1109
1109
  --
1110
1110
 
1111
- ##### [filter=](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L234)
1111
+ ##### [filter=](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L234)
1112
1112
 
1113
1113
  > def filter= value
1114
1114
 
@@ -1116,7 +1116,7 @@ convert to string to support symbols
1116
1116
 
1117
1117
  --
1118
1118
 
1119
- ##### [initialize](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L240)
1119
+ ##### [initialize](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L240)
1120
1120
 
1121
1121
  > def initialize
1122
1122
 
@@ -1128,7 +1128,7 @@ __Returns:__
1128
1128
 
1129
1129
  --
1130
1130
 
1131
- ##### [reset](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L245)
1131
+ ##### [reset](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L245)
1132
1132
 
1133
1133
  > def reset
1134
1134
 
@@ -1136,7 +1136,7 @@ __Returns:__
1136
1136
 
1137
1137
  --
1138
1138
 
1139
- ##### [result](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L251)
1139
+ ##### [result](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L251)
1140
1140
 
1141
1141
  > def result
1142
1142
 
@@ -1144,7 +1144,7 @@ __Returns:__
1144
1144
 
1145
1145
  --
1146
1146
 
1147
- ##### [start_element](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L265)
1147
+ ##### [start_element](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L265)
1148
1148
 
1149
1149
  > def start_element name, attrs = []
1150
1150
 
@@ -1152,7 +1152,7 @@ __Returns:__
1152
1152
 
1153
1153
  --
1154
1154
 
1155
- ##### [end_element](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L275)
1155
+ ##### [end_element](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L275)
1156
1156
 
1157
1157
  > def end_element name
1158
1158
 
@@ -1160,7 +1160,7 @@ __Returns:__
1160
1160
 
1161
1161
  --
1162
1162
 
1163
- ##### [characters](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/helper.rb#L281)
1163
+ ##### [characters](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/helper.rb#L281)
1164
1164
 
1165
1165
  > def characters(chars)
1166
1166
 
@@ -1168,7 +1168,7 @@ __Returns:__
1168
1168
 
1169
1169
  --
1170
1170
 
1171
- ##### [window_size](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/element/window.rb#L5)
1171
+ ##### [window_size](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/element/window.rb#L5)
1172
1172
 
1173
1173
  > def window_size
1174
1174
 
@@ -1176,7 +1176,7 @@ Get the window's size
1176
1176
 
1177
1177
  --
1178
1178
 
1179
- ##### [result](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L7) android
1179
+ ##### [result](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L7) android
1180
1180
 
1181
1181
  > def result
1182
1182
 
@@ -1184,7 +1184,7 @@ TODO: Support strings.xml ids
1184
1184
 
1185
1185
  --
1186
1186
 
1187
- ##### [keys](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L7) android
1187
+ ##### [keys](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L7) android
1188
1188
 
1189
1189
  > def keys
1190
1190
 
@@ -1192,7 +1192,7 @@ TODO: Support strings.xml ids
1192
1192
 
1193
1193
  --
1194
1194
 
1195
- ##### [filter](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L9) android
1195
+ ##### [filter](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L9) android
1196
1196
 
1197
1197
  > def filter
1198
1198
 
@@ -1200,7 +1200,7 @@ TODO: Support strings.xml ids
1200
1200
 
1201
1201
  --
1202
1202
 
1203
- ##### [filter=](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L14) android
1203
+ ##### [filter=](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L14) android
1204
1204
 
1205
1205
  > def filter= value
1206
1206
 
@@ -1208,7 +1208,7 @@ convert to string to support symbols
1208
1208
 
1209
1209
  --
1210
1210
 
1211
- ##### [initialize](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L20) android
1211
+ ##### [initialize](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L20) android
1212
1212
 
1213
1213
  > def initialize
1214
1214
 
@@ -1220,7 +1220,7 @@ __Returns:__
1220
1220
 
1221
1221
  --
1222
1222
 
1223
- ##### [reset](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L25) android
1223
+ ##### [reset](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L25) android
1224
1224
 
1225
1225
  > def reset
1226
1226
 
@@ -1228,7 +1228,7 @@ __Returns:__
1228
1228
 
1229
1229
  --
1230
1230
 
1231
- ##### [start_element](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L31) android
1231
+ ##### [start_element](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L31) android
1232
1232
 
1233
1233
  > def start_element name, attrs = []
1234
1234
 
@@ -1236,7 +1236,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html
1236
1236
 
1237
1237
  --
1238
1238
 
1239
- ##### [get_android_inspect](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L88) android
1239
+ ##### [get_android_inspect](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L88) android
1240
1240
 
1241
1241
  > def get_android_inspect class_name=false
1242
1242
 
@@ -1255,7 +1255,7 @@ __Returns:__
1255
1255
 
1256
1256
  --
1257
1257
 
1258
- ##### [page](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L107) android
1258
+ ##### [page](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L107) android
1259
1259
 
1260
1260
  > def page opts={}
1261
1261
 
@@ -1274,19 +1274,16 @@ __Returns:__
1274
1274
 
1275
1275
  --
1276
1276
 
1277
- ##### [current_app](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L118) android
1277
+ ##### [current_app](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L118) android
1278
1278
 
1279
1279
  > def current_app
1280
1280
 
1281
- Lists package, activity, and adb shell am start -n value for current app.
1282
- Works on local host only (not remote).
1283
- noinspection RubyArgCount
1284
1281
  example line:
1285
1282
  "mFocusedApp=AppWindowToken{b1420058 token=Token{b128add0 ActivityRecord{b1264d10 u0 com.example.android.apis/.ApiDemos t23}}}"
1286
1283
 
1287
1284
  --
1288
1285
 
1289
- ##### [id](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L136) android
1286
+ ##### [id](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L142) android
1290
1287
 
1291
1288
  > def id id
1292
1289
 
@@ -1302,7 +1299,7 @@ __Returns:__
1302
1299
 
1303
1300
  --
1304
1301
 
1305
- ##### [ids](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L144) android
1302
+ ##### [ids](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L150) android
1306
1303
 
1307
1304
  > def ids id
1308
1305
 
@@ -1318,7 +1315,7 @@ __Returns:__
1318
1315
 
1319
1316
  --
1320
1317
 
1321
- ##### [ele_index](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L153) android
1318
+ ##### [ele_index](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L159) android
1322
1319
 
1323
1320
  > def ele_index class_name, index
1324
1321
 
@@ -1336,7 +1333,7 @@ __Returns:__
1336
1333
 
1337
1334
  --
1338
1335
 
1339
- ##### [first_ele](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L167) android
1336
+ ##### [first_ele](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L173) android
1340
1337
 
1341
1338
  > def first_ele class_name
1342
1339
 
@@ -1352,7 +1349,7 @@ __Returns:__
1352
1349
 
1353
1350
  --
1354
1351
 
1355
- ##### [last_ele](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L174) android
1352
+ ##### [last_ele](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L180) android
1356
1353
 
1357
1354
  > def last_ele class_name
1358
1355
 
@@ -1368,7 +1365,7 @@ __Returns:__
1368
1365
 
1369
1366
  --
1370
1367
 
1371
- ##### [tag](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L182) android
1368
+ ##### [tag](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L188) android
1372
1369
 
1373
1370
  > def tag class_name
1374
1371
 
@@ -1384,7 +1381,7 @@ __Returns:__
1384
1381
 
1385
1382
  --
1386
1383
 
1387
- ##### [tags](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L190) android
1384
+ ##### [tags](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L196) android
1388
1385
 
1389
1386
  > def tags class_name
1390
1387
 
@@ -1400,7 +1397,7 @@ __Returns:__
1400
1397
 
1401
1398
  --
1402
1399
 
1403
- ##### [complex_find_contains](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L235) android
1400
+ ##### [complex_find_contains](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L241) android
1404
1401
 
1405
1402
  > def complex_find_contains element, value
1406
1403
 
@@ -1418,7 +1415,7 @@ __Returns:__
1418
1415
 
1419
1416
  --
1420
1417
 
1421
- ##### [complex_finds_contains](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L243) android
1418
+ ##### [complex_finds_contains](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L249) android
1422
1419
 
1423
1420
  > def complex_finds_contains element, value
1424
1421
 
@@ -1436,7 +1433,7 @@ __Returns:__
1436
1433
 
1437
1434
  --
1438
1435
 
1439
- ##### [complex_find_exact](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L283) android
1436
+ ##### [complex_find_exact](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L289) android
1440
1437
 
1441
1438
  > def complex_find_exact class_name, value
1442
1439
 
@@ -1454,7 +1451,7 @@ __Returns:__
1454
1451
 
1455
1452
  --
1456
1453
 
1457
- ##### [complex_finds_exact](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/helper.rb#L291) android
1454
+ ##### [complex_finds_exact](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/helper.rb#L297) android
1458
1455
 
1459
1456
  > def complex_finds_exact class_name, value
1460
1457
 
@@ -1472,7 +1469,7 @@ __Returns:__
1472
1469
 
1473
1470
  --
1474
1471
 
1475
- ##### [TextView](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/text.rb#L4) android
1472
+ ##### [TextView](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/text.rb#L4) android
1476
1473
 
1477
1474
  > TextView = 'android.widget.TextView'
1478
1475
 
@@ -1480,7 +1477,7 @@ __Returns:__
1480
1477
 
1481
1478
  --
1482
1479
 
1483
- ##### [text](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/text.rb#L10) android
1480
+ ##### [text](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/text.rb#L10) android
1484
1481
 
1485
1482
  > def text value
1486
1483
 
@@ -1497,7 +1494,7 @@ __Returns:__
1497
1494
 
1498
1495
  --
1499
1496
 
1500
- ##### [texts](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/text.rb#L19) android
1497
+ ##### [texts](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/text.rb#L19) android
1501
1498
 
1502
1499
  > def texts value=false
1503
1500
 
@@ -1514,7 +1511,7 @@ __Returns:__
1514
1511
 
1515
1512
  --
1516
1513
 
1517
- ##### [first_text](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/text.rb#L26) android
1514
+ ##### [first_text](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/text.rb#L26) android
1518
1515
 
1519
1516
  > def first_text
1520
1517
 
@@ -1526,7 +1523,7 @@ __Returns:__
1526
1523
 
1527
1524
  --
1528
1525
 
1529
- ##### [last_text](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/text.rb#L32) android
1526
+ ##### [last_text](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/text.rb#L32) android
1530
1527
 
1531
1528
  > def last_text
1532
1529
 
@@ -1538,7 +1535,7 @@ __Returns:__
1538
1535
 
1539
1536
  --
1540
1537
 
1541
- ##### [text_exact](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/text.rb#L39) android
1538
+ ##### [text_exact](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/text.rb#L39) android
1542
1539
 
1543
1540
  > def text_exact value
1544
1541
 
@@ -1554,7 +1551,7 @@ __Returns:__
1554
1551
 
1555
1552
  --
1556
1553
 
1557
- ##### [texts_exact](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/text.rb#L46) android
1554
+ ##### [texts_exact](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/text.rb#L46) android
1558
1555
 
1559
1556
  > def texts_exact value
1560
1557
 
@@ -1570,7 +1567,7 @@ __Returns:__
1570
1567
 
1571
1568
  --
1572
1569
 
1573
- ##### [alert_click](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/alert.rb#L6) android
1570
+ ##### [alert_click](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/alert.rb#L6) android
1574
1571
 
1575
1572
  > def alert_click value
1576
1573
 
@@ -1586,7 +1583,7 @@ __Returns:__
1586
1583
 
1587
1584
  --
1588
1585
 
1589
- ##### [alert_accept](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/alert.rb#L13) android
1586
+ ##### [alert_accept](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/alert.rb#L13) android
1590
1587
 
1591
1588
  > def alert_accept
1592
1589
 
@@ -1599,7 +1596,7 @@ __Returns:__
1599
1596
 
1600
1597
  --
1601
1598
 
1602
- ##### [alert_accept_text](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/alert.rb#L20) android
1599
+ ##### [alert_accept_text](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/alert.rb#L20) android
1603
1600
 
1604
1601
  > def alert_accept_text
1605
1602
 
@@ -1612,7 +1609,7 @@ __Returns:__
1612
1609
 
1613
1610
  --
1614
1611
 
1615
- ##### [alert_dismiss](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/alert.rb#L27) android
1612
+ ##### [alert_dismiss](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/alert.rb#L27) android
1616
1613
 
1617
1614
  > def alert_dismiss
1618
1615
 
@@ -1625,7 +1622,7 @@ __Returns:__
1625
1622
 
1626
1623
  --
1627
1624
 
1628
- ##### [alert_dismiss_text](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/alert.rb#L34) android
1625
+ ##### [alert_dismiss_text](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/alert.rb#L34) android
1629
1626
 
1630
1627
  > def alert_dismiss_text
1631
1628
 
@@ -1638,7 +1635,7 @@ __Returns:__
1638
1635
 
1639
1636
  --
1640
1637
 
1641
- ##### [uiautomator_find](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/mobile_methods.rb#L10) android
1638
+ ##### [uiautomator_find](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/mobile_methods.rb#L10) android
1642
1639
 
1643
1640
  > def uiautomator_find
1644
1641
 
@@ -1650,7 +1647,7 @@ find_element/s can be used with a [UISelector](http://developer.android.com/tool
1650
1647
 
1651
1648
  --
1652
1649
 
1653
- ##### [Button](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/button.rb#L4) android
1650
+ ##### [Button](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/button.rb#L4) android
1654
1651
 
1655
1652
  > Button = 'android.widget.Button'
1656
1653
 
@@ -1658,7 +1655,7 @@ find_element/s can be used with a [UISelector](http://developer.android.com/tool
1658
1655
 
1659
1656
  --
1660
1657
 
1661
- ##### [ImageButton](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/button.rb#L5) android
1658
+ ##### [ImageButton](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/button.rb#L5) android
1662
1659
 
1663
1660
  > ImageButton = 'android.widget.ImageButton'
1664
1661
 
@@ -1666,7 +1663,7 @@ find_element/s can be used with a [UISelector](http://developer.android.com/tool
1666
1663
 
1667
1664
  --
1668
1665
 
1669
- ##### [button](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/button.rb#L55) android
1666
+ ##### [button](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/button.rb#L55) android
1670
1667
 
1671
1668
  > def button value
1672
1669
 
@@ -1683,7 +1680,7 @@ __Returns:__
1683
1680
 
1684
1681
  --
1685
1682
 
1686
- ##### [buttons](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/button.rb#L72) android
1683
+ ##### [buttons](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/button.rb#L72) android
1687
1684
 
1688
1685
  > def buttons value=false
1689
1686
 
@@ -1700,7 +1697,7 @@ __Returns:__
1700
1697
 
1701
1698
  --
1702
1699
 
1703
- ##### [first_button](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/button.rb#L79) android
1700
+ ##### [first_button](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/button.rb#L79) android
1704
1701
 
1705
1702
  > def first_button
1706
1703
 
@@ -1712,7 +1709,7 @@ __Returns:__
1712
1709
 
1713
1710
  --
1714
1711
 
1715
- ##### [last_button](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/button.rb#L85) android
1712
+ ##### [last_button](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/button.rb#L85) android
1716
1713
 
1717
1714
  > def last_button
1718
1715
 
@@ -1724,7 +1721,7 @@ __Returns:__
1724
1721
 
1725
1722
  --
1726
1723
 
1727
- ##### [button_exact](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/button.rb#L99) android
1724
+ ##### [button_exact](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/button.rb#L99) android
1728
1725
 
1729
1726
  > def button_exact value
1730
1727
 
@@ -1740,7 +1737,7 @@ __Returns:__
1740
1737
 
1741
1738
  --
1742
1739
 
1743
- ##### [buttons_exact](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/button.rb#L106) android
1740
+ ##### [buttons_exact](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/button.rb#L106) android
1744
1741
 
1745
1742
  > def buttons_exact value
1746
1743
 
@@ -1756,7 +1753,7 @@ __Returns:__
1756
1753
 
1757
1754
  --
1758
1755
 
1759
- ##### [find](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/generic.rb#L7) android
1756
+ ##### [find](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/generic.rb#L7) android
1760
1757
 
1761
1758
  > def find value
1762
1759
 
@@ -1772,7 +1769,7 @@ __Returns:__
1772
1769
 
1773
1770
  --
1774
1771
 
1775
- ##### [finds](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/generic.rb#L14) android
1772
+ ##### [finds](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/generic.rb#L14) android
1776
1773
 
1777
1774
  > def finds value
1778
1775
 
@@ -1788,7 +1785,7 @@ __Returns:__
1788
1785
 
1789
1786
  --
1790
1787
 
1791
- ##### [find_exact](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/generic.rb#L21) android
1788
+ ##### [find_exact](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/generic.rb#L21) android
1792
1789
 
1793
1790
  > def find_exact value
1794
1791
 
@@ -1804,7 +1801,7 @@ __Returns:__
1804
1801
 
1805
1802
  --
1806
1803
 
1807
- ##### [finds_exact](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/generic.rb#L28) android
1804
+ ##### [finds_exact](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/generic.rb#L28) android
1808
1805
 
1809
1806
  > def finds_exact value
1810
1807
 
@@ -1820,7 +1817,7 @@ __Returns:__
1820
1817
 
1821
1818
  --
1822
1819
 
1823
- ##### [scroll_to](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/generic.rb#L35) android
1820
+ ##### [scroll_to](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/generic.rb#L35) android
1824
1821
 
1825
1822
  > def scroll_to text
1826
1823
 
@@ -1836,7 +1833,7 @@ __Returns:__
1836
1833
 
1837
1834
  --
1838
1835
 
1839
- ##### [scroll_to_exact](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/generic.rb#L48) android
1836
+ ##### [scroll_to_exact](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/generic.rb#L48) android
1840
1837
 
1841
1838
  > def scroll_to_exact text
1842
1839
 
@@ -1852,7 +1849,7 @@ __Returns:__
1852
1849
 
1853
1850
  --
1854
1851
 
1855
- ##### [EditText](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/textfield.rb#L3) android
1852
+ ##### [EditText](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/textfield.rb#L3) android
1856
1853
 
1857
1854
  > EditText = 'android.widget.EditText'
1858
1855
 
@@ -1860,7 +1857,7 @@ __Returns:__
1860
1857
 
1861
1858
  --
1862
1859
 
1863
- ##### [textfield](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/textfield.rb#L9) android
1860
+ ##### [textfield](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/textfield.rb#L9) android
1864
1861
 
1865
1862
  > def textfield value
1866
1863
 
@@ -1877,7 +1874,7 @@ __Returns:__
1877
1874
 
1878
1875
  --
1879
1876
 
1880
- ##### [textfields](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/textfield.rb#L18) android
1877
+ ##### [textfields](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/textfield.rb#L18) android
1881
1878
 
1882
1879
  > def textfields value=false
1883
1880
 
@@ -1894,7 +1891,7 @@ __Returns:__
1894
1891
 
1895
1892
  --
1896
1893
 
1897
- ##### [first_textfield](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/textfield.rb#L25) android
1894
+ ##### [first_textfield](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/textfield.rb#L25) android
1898
1895
 
1899
1896
  > def first_textfield
1900
1897
 
@@ -1906,7 +1903,7 @@ __Returns:__
1906
1903
 
1907
1904
  --
1908
1905
 
1909
- ##### [last_textfield](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/textfield.rb#L31) android
1906
+ ##### [last_textfield](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/textfield.rb#L31) android
1910
1907
 
1911
1908
  > def last_textfield
1912
1909
 
@@ -1918,7 +1915,7 @@ __Returns:__
1918
1915
 
1919
1916
  --
1920
1917
 
1921
- ##### [textfield_exact](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/textfield.rb#L38) android
1918
+ ##### [textfield_exact](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/textfield.rb#L38) android
1922
1919
 
1923
1920
  > def textfield_exact value
1924
1921
 
@@ -1934,7 +1931,7 @@ __Returns:__
1934
1931
 
1935
1932
  --
1936
1933
 
1937
- ##### [textfields_exact](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/android/element/textfield.rb#L45) android
1934
+ ##### [textfields_exact](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/android/element/textfield.rb#L45) android
1938
1935
 
1939
1936
  > def textfields_exact value
1940
1937
 
@@ -1950,7 +1947,7 @@ __Returns:__
1950
1947
 
1951
1948
  --
1952
1949
 
1953
- ##### [value](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/patch.rb#L10)
1950
+ ##### [value](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/patch.rb#L10)
1954
1951
 
1955
1952
  > def value
1956
1953
 
@@ -1960,7 +1957,7 @@ Fixes NoMethodError: undefined method `value' for Selenium::WebDriver::Element
1960
1957
 
1961
1958
  --
1962
1959
 
1963
- ##### [name](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/patch.rb#L17)
1960
+ ##### [name](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/patch.rb#L17)
1964
1961
 
1965
1962
  > def name
1966
1963
 
@@ -1970,7 +1967,7 @@ Fixes NoMethodError: undefined method `name' for Selenium::WebDriver::Element
1970
1967
 
1971
1968
  --
1972
1969
 
1973
- ##### [location_rel](https://github.com/appium/ruby_lib/blob/77d64af57b0e6a828c5d61008c444518e6597e4b/lib/appium_lib/common/patch.rb#L29)
1970
+ ##### [location_rel](https://github.com/appium/ruby_lib/blob/370b79c4b9f18fa615c145685256f543ee18debd/lib/appium_lib/common/patch.rb#L29)
1974
1971
 
1975
1972
  > def location_rel
1976
1973