appium_lib 9.12.0 → 9.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/docs/android_docs.md +198 -198
- data/docs/ios_docs.md +274 -234
- data/lib/appium_lib/android/common/command/command.rb +1 -3
- data/lib/appium_lib/appium.rb +1 -0
- data/lib/appium_lib/common/command.rb +9 -0
- data/lib/appium_lib/{android/common → common}/command/ws_logcat.rb +1 -1
- data/lib/appium_lib/common/wait.rb +18 -2
- data/lib/appium_lib/ios/xcuitest/bridge.rb +1 -0
- data/lib/appium_lib/ios/xcuitest/command.rb +26 -0
- data/lib/appium_lib/version.rb +2 -2
- data/release_notes.md +6 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23e2434616c66d82f667c9f8d824d2946a2c689b
|
4
|
+
data.tar.gz: f5557481fef4c33ef86877067ddd973da1d98c17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5273350b14e3bc4855ac718e3c5fb19c1b9aac2cb1eaffc58d8459b522ff8107072862339fc8df176524db0c64fb07f10c9c4862af251526ab10389cdb76818
|
7
|
+
data.tar.gz: d2f1df488e5bda4dde02c7209c2eb485fbc1c900c63596c7d5b66ea4a5d4861a8aa418bb5990c6ce4365c7582f1f9aeada66550dc1c7c074b953be7d41b8c8a0
|
data/CHANGELOG.md
CHANGED
@@ -10,6 +10,15 @@ Release tags are https://github.com/appium/ruby_lib/releases .
|
|
10
10
|
|
11
11
|
### 3. Deprecations
|
12
12
|
|
13
|
+
## v9.12.1
|
14
|
+
### 1. Enhancements
|
15
|
+
- Support `start_logs_broadcast` and `stop_logs_broadcast` for iOS
|
16
|
+
|
17
|
+
### 2. Bug fixes
|
18
|
+
- Back compatible for `wait(number) {}` and `wait_true(number) {}`
|
19
|
+
|
20
|
+
### 3. Deprecations
|
21
|
+
|
13
22
|
## v9.12.0
|
14
23
|
### 1. Enhancements
|
15
24
|
|
data/docs/android_docs.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
##### [load_settings](https://github.com/appium/ruby_lib/blob/
|
1
|
+
##### [load_settings](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/appium.rb#L46)
|
2
2
|
|
3
3
|
> def load_settings(opts = {})
|
4
4
|
|
@@ -27,7 +27,7 @@ __Returns:__
|
|
27
27
|
|
28
28
|
--
|
29
29
|
|
30
|
-
##### [load_appium_txt](https://github.com/appium/ruby_lib/blob/
|
30
|
+
##### [load_appium_txt](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/appium.rb#L80)
|
31
31
|
|
32
32
|
> def load_settings(opts = {})
|
33
33
|
|
@@ -56,7 +56,7 @@ __Returns:__
|
|
56
56
|
|
57
57
|
--
|
58
58
|
|
59
|
-
##### [expand_required_files](https://github.com/appium/ruby_lib/blob/
|
59
|
+
##### [expand_required_files](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/appium.rb#L85)
|
60
60
|
|
61
61
|
> def expand_required_files(base_dir, file_paths)
|
62
62
|
|
@@ -74,7 +74,7 @@ __Returns:__
|
|
74
74
|
|
75
75
|
--
|
76
76
|
|
77
|
-
##### [promote_singleton_appium_methods](https://github.com/appium/ruby_lib/blob/
|
77
|
+
##### [promote_singleton_appium_methods](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/appium.rb#L127)
|
78
78
|
|
79
79
|
> def promote_singleton_appium_methods(modules, driver = $driver)
|
80
80
|
|
@@ -98,7 +98,7 @@ __Parameters:__
|
|
98
98
|
|
99
99
|
--
|
100
100
|
|
101
|
-
##### [promote_appium_methods](https://github.com/appium/ruby_lib/blob/
|
101
|
+
##### [promote_appium_methods](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/appium.rb#L182)
|
102
102
|
|
103
103
|
> def promote_appium_methods(class_array, driver = $driver)
|
104
104
|
|
@@ -116,7 +116,7 @@ __Parameters:__
|
|
116
116
|
|
117
117
|
--
|
118
118
|
|
119
|
-
##### [global_webdriver_http_sleep](https://github.com/appium/ruby_lib/blob/
|
119
|
+
##### [global_webdriver_http_sleep](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L36)
|
120
120
|
|
121
121
|
> def global_webdriver_http_sleep
|
122
122
|
|
@@ -124,7 +124,7 @@ The amount to sleep in seconds before every webdriver http call.
|
|
124
124
|
|
125
125
|
--
|
126
126
|
|
127
|
-
##### [global_webdriver_http_sleep=](https://github.com/appium/ruby_lib/blob/
|
127
|
+
##### [global_webdriver_http_sleep=](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L36)
|
128
128
|
|
129
129
|
> def global_webdriver_http_sleep=(value)
|
130
130
|
|
@@ -132,7 +132,7 @@ The amount to sleep in seconds before every webdriver http call.
|
|
132
132
|
|
133
133
|
--
|
134
134
|
|
135
|
-
##### [sauce](https://github.com/appium/ruby_lib/blob/
|
135
|
+
##### [sauce](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L39)
|
136
136
|
|
137
137
|
> def sauce
|
138
138
|
|
@@ -140,7 +140,7 @@ SauceLab's settings
|
|
140
140
|
|
141
141
|
--
|
142
142
|
|
143
|
-
##### [sauce_username](https://github.com/appium/ruby_lib/blob/
|
143
|
+
##### [sauce_username](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L42)
|
144
144
|
|
145
145
|
> def sauce_username
|
146
146
|
|
@@ -149,7 +149,7 @@ same as @sauce.username
|
|
149
149
|
|
150
150
|
--
|
151
151
|
|
152
|
-
##### [sauce_access_key](https://github.com/appium/ruby_lib/blob/
|
152
|
+
##### [sauce_access_key](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L45)
|
153
153
|
|
154
154
|
> def sauce_access_key
|
155
155
|
|
@@ -158,7 +158,7 @@ same as @sauce.access_key
|
|
158
158
|
|
159
159
|
--
|
160
160
|
|
161
|
-
##### [sauce_endpoint](https://github.com/appium/ruby_lib/blob/
|
161
|
+
##### [sauce_endpoint](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L48)
|
162
162
|
|
163
163
|
> def sauce_endpoint
|
164
164
|
|
@@ -167,7 +167,7 @@ same as @sauce.endpoint
|
|
167
167
|
|
168
168
|
--
|
169
169
|
|
170
|
-
##### [caps](https://github.com/appium/ruby_lib/blob/
|
170
|
+
##### [caps](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L52)
|
171
171
|
|
172
172
|
> def caps
|
173
173
|
|
@@ -176,7 +176,7 @@ read http://www.rubydoc.info/github/appium/ruby_lib_core/Appium/Core/Driver
|
|
176
176
|
|
177
177
|
--
|
178
178
|
|
179
|
-
##### [custom_url](https://github.com/appium/ruby_lib/blob/
|
179
|
+
##### [custom_url](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L53)
|
180
180
|
|
181
181
|
> def custom_url
|
182
182
|
|
@@ -184,7 +184,7 @@ Returns the value of attribute custom_url
|
|
184
184
|
|
185
185
|
--
|
186
186
|
|
187
|
-
##### [export_session](https://github.com/appium/ruby_lib/blob/
|
187
|
+
##### [export_session](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L54)
|
188
188
|
|
189
189
|
> def export_session
|
190
190
|
|
@@ -192,7 +192,7 @@ Returns the value of attribute export_session
|
|
192
192
|
|
193
193
|
--
|
194
194
|
|
195
|
-
##### [export_session_path](https://github.com/appium/ruby_lib/blob/
|
195
|
+
##### [export_session_path](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L55)
|
196
196
|
|
197
197
|
> def export_session_path
|
198
198
|
|
@@ -200,7 +200,7 @@ Returns the value of attribute export_session_path
|
|
200
200
|
|
201
201
|
--
|
202
202
|
|
203
|
-
##### [default_wait](https://github.com/appium/ruby_lib/blob/
|
203
|
+
##### [default_wait](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L56)
|
204
204
|
|
205
205
|
> def default_wait
|
206
206
|
|
@@ -208,7 +208,7 @@ Returns the value of attribute default_wait
|
|
208
208
|
|
209
209
|
--
|
210
210
|
|
211
|
-
##### [appium_port](https://github.com/appium/ruby_lib/blob/
|
211
|
+
##### [appium_port](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L57)
|
212
212
|
|
213
213
|
> def appium_port
|
214
214
|
|
@@ -216,7 +216,7 @@ Returns the value of attribute appium_port
|
|
216
216
|
|
217
217
|
--
|
218
218
|
|
219
|
-
##### [appium_device](https://github.com/appium/ruby_lib/blob/
|
219
|
+
##### [appium_device](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L58)
|
220
220
|
|
221
221
|
> def appium_device
|
222
222
|
|
@@ -224,7 +224,7 @@ Returns the value of attribute appium_device
|
|
224
224
|
|
225
225
|
--
|
226
226
|
|
227
|
-
##### [automation_name](https://github.com/appium/ruby_lib/blob/
|
227
|
+
##### [automation_name](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L59)
|
228
228
|
|
229
229
|
> def automation_name
|
230
230
|
|
@@ -232,7 +232,7 @@ Returns the value of attribute automation_name
|
|
232
232
|
|
233
233
|
--
|
234
234
|
|
235
|
-
##### [listener](https://github.com/appium/ruby_lib/blob/
|
235
|
+
##### [listener](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L60)
|
236
236
|
|
237
237
|
> def listener
|
238
238
|
|
@@ -240,7 +240,7 @@ Returns the value of attribute listener
|
|
240
240
|
|
241
241
|
--
|
242
242
|
|
243
|
-
##### [http_client](https://github.com/appium/ruby_lib/blob/
|
243
|
+
##### [http_client](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L61)
|
244
244
|
|
245
245
|
> def http_client
|
246
246
|
|
@@ -248,7 +248,7 @@ Returns the value of attribute http_client
|
|
248
248
|
|
249
249
|
--
|
250
250
|
|
251
|
-
##### [appium_wait_timeout](https://github.com/appium/ruby_lib/blob/
|
251
|
+
##### [appium_wait_timeout](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L62)
|
252
252
|
|
253
253
|
> def appium_wait_timeout
|
254
254
|
|
@@ -256,7 +256,7 @@ Returns the value of attribute appium_wait_timeout
|
|
256
256
|
|
257
257
|
--
|
258
258
|
|
259
|
-
##### [appium_wait_interval](https://github.com/appium/ruby_lib/blob/
|
259
|
+
##### [appium_wait_interval](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L63)
|
260
260
|
|
261
261
|
> def appium_wait_interval
|
262
262
|
|
@@ -264,7 +264,7 @@ Returns the value of attribute appium_wait_interval
|
|
264
264
|
|
265
265
|
--
|
266
266
|
|
267
|
-
##### [appium_server_status](https://github.com/appium/ruby_lib/blob/
|
267
|
+
##### [appium_server_status](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L66)
|
268
268
|
|
269
269
|
> def appium_server_status
|
270
270
|
|
@@ -272,7 +272,7 @@ Appium's server version
|
|
272
272
|
|
273
273
|
--
|
274
274
|
|
275
|
-
##### [appium_debug](https://github.com/appium/ruby_lib/blob/
|
275
|
+
##### [appium_debug](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L68)
|
276
276
|
|
277
277
|
> def appium_debug
|
278
278
|
|
@@ -280,7 +280,7 @@ Boolean debug mode for the Appium Ruby bindings
|
|
280
280
|
|
281
281
|
--
|
282
282
|
|
283
|
-
##### [driver](https://github.com/appium/ruby_lib/blob/
|
283
|
+
##### [driver](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L71)
|
284
284
|
|
285
285
|
> def driver
|
286
286
|
|
@@ -292,7 +292,7 @@ __Returns:__
|
|
292
292
|
|
293
293
|
--
|
294
294
|
|
295
|
-
##### [core](https://github.com/appium/ruby_lib/blob/
|
295
|
+
##### [core](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L73)
|
296
296
|
|
297
297
|
> def core
|
298
298
|
|
@@ -300,7 +300,7 @@ Instance of Appium::Core::Driver
|
|
300
300
|
|
301
301
|
--
|
302
302
|
|
303
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
303
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L141)
|
304
304
|
|
305
305
|
> def initialize(opts = {}, global_driver = nil)
|
306
306
|
|
@@ -319,7 +319,7 @@ __Returns:__
|
|
319
319
|
|
320
320
|
--
|
321
321
|
|
322
|
-
##### [driver_attributes](https://github.com/appium/ruby_lib/blob/
|
322
|
+
##### [driver_attributes](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L251)
|
323
323
|
|
324
324
|
> def driver_attributes
|
325
325
|
|
@@ -327,7 +327,7 @@ Returns a hash of the driver attributes
|
|
327
327
|
|
328
328
|
--
|
329
329
|
|
330
|
-
##### [device_is_android?](https://github.com/appium/ruby_lib/blob/
|
330
|
+
##### [device_is_android?](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L271)
|
331
331
|
|
332
332
|
> def device_is_android?
|
333
333
|
|
@@ -339,7 +339,7 @@ __Returns:__
|
|
339
339
|
|
340
340
|
--
|
341
341
|
|
342
|
-
##### [device_is_ios?](https://github.com/appium/ruby_lib/blob/
|
342
|
+
##### [device_is_ios?](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L275)
|
343
343
|
|
344
344
|
> def device_is_ios?
|
345
345
|
|
@@ -351,7 +351,7 @@ __Returns:__
|
|
351
351
|
|
352
352
|
--
|
353
353
|
|
354
|
-
##### [device_is_windows?](https://github.com/appium/ruby_lib/blob/
|
354
|
+
##### [device_is_windows?](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L279)
|
355
355
|
|
356
356
|
> def device_is_windows?
|
357
357
|
|
@@ -363,7 +363,7 @@ __Returns:__
|
|
363
363
|
|
364
364
|
--
|
365
365
|
|
366
|
-
##### [automation_name_is_uiautomator2?](https://github.com/appium/ruby_lib/blob/
|
366
|
+
##### [automation_name_is_uiautomator2?](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L285)
|
367
367
|
|
368
368
|
> def automation_name_is_uiautomator2?
|
369
369
|
|
@@ -375,7 +375,7 @@ __Returns:__
|
|
375
375
|
|
376
376
|
--
|
377
377
|
|
378
|
-
##### [automation_name_is_espresso?](https://github.com/appium/ruby_lib/blob/
|
378
|
+
##### [automation_name_is_espresso?](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L291)
|
379
379
|
|
380
380
|
> def automation_name_is_espresso?
|
381
381
|
|
@@ -387,7 +387,7 @@ __Returns:__
|
|
387
387
|
|
388
388
|
--
|
389
389
|
|
390
|
-
##### [automation_name_is_xcuitest?](https://github.com/appium/ruby_lib/blob/
|
390
|
+
##### [automation_name_is_xcuitest?](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L297)
|
391
391
|
|
392
392
|
> def automation_name_is_xcuitest?
|
393
393
|
|
@@ -399,7 +399,7 @@ __Returns:__
|
|
399
399
|
|
400
400
|
--
|
401
401
|
|
402
|
-
##### [dialect](https://github.com/appium/ruby_lib/blob/
|
402
|
+
##### [dialect](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L317)
|
403
403
|
|
404
404
|
> def dialect
|
405
405
|
|
@@ -421,7 +421,7 @@ __Returns:__
|
|
421
421
|
|
422
422
|
--
|
423
423
|
|
424
|
-
##### [check_server_version_xcuitest](https://github.com/appium/ruby_lib/blob/
|
424
|
+
##### [check_server_version_xcuitest](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L324)
|
425
425
|
|
426
426
|
> def check_server_version_xcuitest
|
427
427
|
|
@@ -434,7 +434,7 @@ __Returns:__
|
|
434
434
|
|
435
435
|
--
|
436
436
|
|
437
|
-
##### [appium_server_version](https://github.com/appium/ruby_lib/blob/
|
437
|
+
##### [appium_server_version](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L345)
|
438
438
|
|
439
439
|
> def appium_server_version
|
440
440
|
|
@@ -446,7 +446,7 @@ __Returns:__
|
|
446
446
|
|
447
447
|
--
|
448
448
|
|
449
|
-
##### [remote_status](https://github.com/appium/ruby_lib/blob/
|
449
|
+
##### [remote_status](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L352)
|
450
450
|
|
451
451
|
> def appium_server_version
|
452
452
|
|
@@ -458,7 +458,7 @@ __Returns:__
|
|
458
458
|
|
459
459
|
--
|
460
460
|
|
461
|
-
##### [platform_version](https://github.com/appium/ruby_lib/blob/
|
461
|
+
##### [platform_version](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L356)
|
462
462
|
|
463
463
|
> def platform_version
|
464
464
|
|
@@ -470,7 +470,7 @@ __Returns:__
|
|
470
470
|
|
471
471
|
--
|
472
472
|
|
473
|
-
##### [appium_client_version](https://github.com/appium/ruby_lib/blob/
|
473
|
+
##### [appium_client_version](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L369)
|
474
474
|
|
475
475
|
> def appium_client_version
|
476
476
|
|
@@ -482,7 +482,7 @@ __Returns:__
|
|
482
482
|
|
483
483
|
--
|
484
484
|
|
485
|
-
##### [absolute_app_path](https://github.com/appium/ruby_lib/blob/
|
485
|
+
##### [absolute_app_path](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L381)
|
486
486
|
|
487
487
|
> def self.absolute_app_path(opts)
|
488
488
|
|
@@ -499,7 +499,7 @@ __Returns:__
|
|
499
499
|
|
500
500
|
--
|
501
501
|
|
502
|
-
##### [server_url](https://github.com/appium/ruby_lib/blob/
|
502
|
+
##### [server_url](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L414)
|
503
503
|
|
504
504
|
> def server_url
|
505
505
|
|
@@ -511,7 +511,7 @@ __Returns:__
|
|
511
511
|
|
512
512
|
--
|
513
513
|
|
514
|
-
##### [restart](https://github.com/appium/ruby_lib/blob/
|
514
|
+
##### [restart](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L422)
|
515
515
|
|
516
516
|
> def restart
|
517
517
|
|
@@ -523,7 +523,7 @@ __Returns:__
|
|
523
523
|
|
524
524
|
--
|
525
525
|
|
526
|
-
##### [screenshot](https://github.com/appium/ruby_lib/blob/
|
526
|
+
##### [screenshot](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L435)
|
527
527
|
|
528
528
|
> def screenshot(png_save_path)
|
529
529
|
|
@@ -539,7 +539,7 @@ __Returns:__
|
|
539
539
|
|
540
540
|
--
|
541
541
|
|
542
|
-
##### [element_screenshot](https://github.com/appium/ruby_lib/blob/
|
542
|
+
##### [element_screenshot](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L449)
|
543
543
|
|
544
544
|
> def element_screenshot(element, png_save_path)
|
545
545
|
|
@@ -557,7 +557,7 @@ __Returns:__
|
|
557
557
|
|
558
558
|
--
|
559
559
|
|
560
|
-
##### [driver_quit](https://github.com/appium/ruby_lib/blob/
|
560
|
+
##### [driver_quit](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L456)
|
561
561
|
|
562
562
|
> def driver_quit
|
563
563
|
|
@@ -569,7 +569,7 @@ __Returns:__
|
|
569
569
|
|
570
570
|
--
|
571
571
|
|
572
|
-
##### [quit_driver](https://github.com/appium/ruby_lib/blob/
|
572
|
+
##### [quit_driver](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L459)
|
573
573
|
|
574
574
|
> def driver_quit
|
575
575
|
|
@@ -581,7 +581,7 @@ __Returns:__
|
|
581
581
|
|
582
582
|
--
|
583
583
|
|
584
|
-
##### [window_size](https://github.com/appium/ruby_lib/blob/
|
584
|
+
##### [window_size](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L470)
|
585
585
|
|
586
586
|
> def window_size
|
587
587
|
|
@@ -593,7 +593,7 @@ __Returns:__
|
|
593
593
|
|
594
594
|
--
|
595
595
|
|
596
|
-
##### [start_driver](https://github.com/appium/ruby_lib/blob/
|
596
|
+
##### [start_driver](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L503)
|
597
597
|
|
598
598
|
> def start_driver(http_client_ops =
|
599
599
|
|
@@ -613,7 +613,7 @@ __Returns:__
|
|
613
613
|
|
614
614
|
--
|
615
615
|
|
616
|
-
##### [set_implicit_wait](https://github.com/appium/ruby_lib/blob/
|
616
|
+
##### [set_implicit_wait](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L525)
|
617
617
|
|
618
618
|
> def set_implicit_wait(wait)
|
619
619
|
|
@@ -621,7 +621,7 @@ To ignore error for Espresso Driver
|
|
621
621
|
|
622
622
|
--
|
623
623
|
|
624
|
-
##### [no_wait](https://github.com/appium/ruby_lib/blob/
|
624
|
+
##### [no_wait](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L535)
|
625
625
|
|
626
626
|
> def no_wait
|
627
627
|
|
@@ -629,7 +629,7 @@ Set implicit wait to zero.
|
|
629
629
|
|
630
630
|
--
|
631
631
|
|
632
|
-
##### [set_wait](https://github.com/appium/ruby_lib/blob/
|
632
|
+
##### [set_wait](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L549)
|
633
633
|
|
634
634
|
> def set_wait(timeout = nil)
|
635
635
|
|
@@ -645,7 +645,7 @@ __Returns:__
|
|
645
645
|
|
646
646
|
--
|
647
647
|
|
648
|
-
##### [exists](https://github.com/appium/ruby_lib/blob/
|
648
|
+
##### [exists](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L566)
|
649
649
|
|
650
650
|
> def exists(pre_check = 0, post_check = @core.default_wait)
|
651
651
|
|
@@ -669,7 +669,7 @@ __Returns:__
|
|
669
669
|
|
670
670
|
--
|
671
671
|
|
672
|
-
##### [execute_script](https://github.com/appium/ruby_lib/blob/
|
672
|
+
##### [execute_script](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L590)
|
673
673
|
|
674
674
|
> def execute_script(script, *args)
|
675
675
|
|
@@ -687,7 +687,7 @@ __Returns:__
|
|
687
687
|
|
688
688
|
--
|
689
689
|
|
690
|
-
##### [find_elements](https://github.com/appium/ruby_lib/blob/
|
690
|
+
##### [find_elements](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L614)
|
691
691
|
|
692
692
|
> def find_elements(*args)
|
693
693
|
|
@@ -707,7 +707,7 @@ __Returns:__
|
|
707
707
|
|
708
708
|
--
|
709
709
|
|
710
|
-
##### [find_element](https://github.com/appium/ruby_lib/blob/
|
710
|
+
##### [find_element](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L630)
|
711
711
|
|
712
712
|
> def find_element(*args)
|
713
713
|
|
@@ -725,7 +725,7 @@ __Returns:__
|
|
725
725
|
|
726
726
|
--
|
727
727
|
|
728
|
-
##### [set_location](https://github.com/appium/ruby_lib/blob/
|
728
|
+
##### [set_location](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L643)
|
729
729
|
|
730
730
|
> def set_location(opts = {})
|
731
731
|
|
@@ -741,7 +741,7 @@ __Returns:__
|
|
741
741
|
|
742
742
|
--
|
743
743
|
|
744
|
-
##### [x](https://github.com/appium/ruby_lib/blob/
|
744
|
+
##### [x](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/driver.rb#L653)
|
745
745
|
|
746
746
|
> def x
|
747
747
|
|
@@ -754,7 +754,7 @@ __Returns:__
|
|
754
754
|
|
755
755
|
--
|
756
756
|
|
757
|
-
##### [username](https://github.com/appium/ruby_lib/blob/
|
757
|
+
##### [username](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/sauce_labs.rb#L4)
|
758
758
|
|
759
759
|
> def username
|
760
760
|
|
@@ -762,7 +762,7 @@ Username for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_US
|
|
762
762
|
|
763
763
|
--
|
764
764
|
|
765
|
-
##### [access_key](https://github.com/appium/ruby_lib/blob/
|
765
|
+
##### [access_key](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/sauce_labs.rb#L6)
|
766
766
|
|
767
767
|
> def access_key
|
768
768
|
|
@@ -770,7 +770,7 @@ Access Key for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_
|
|
770
770
|
|
771
771
|
--
|
772
772
|
|
773
|
-
##### [endpoint](https://github.com/appium/ruby_lib/blob/
|
773
|
+
##### [endpoint](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/sauce_labs.rb#L8)
|
774
774
|
|
775
775
|
> def endpoint
|
776
776
|
|
@@ -778,7 +778,7 @@ Override the Sauce Appium endpoint to allow e.g. TestObject tests. Default is 'o
|
|
778
778
|
|
779
779
|
--
|
780
780
|
|
781
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
781
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/sauce_labs.rb#L33)
|
782
782
|
|
783
783
|
> def initialize(appium_lib_opts)
|
784
784
|
|
@@ -794,7 +794,7 @@ __Returns:__
|
|
794
794
|
|
795
795
|
--
|
796
796
|
|
797
|
-
##### [sauce_server_url?](https://github.com/appium/ruby_lib/blob/
|
797
|
+
##### [sauce_server_url?](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/sauce_labs.rb#L53)
|
798
798
|
|
799
799
|
> def sauce_server_url?
|
800
800
|
|
@@ -806,7 +806,7 @@ __Returns:__
|
|
806
806
|
|
807
807
|
--
|
808
808
|
|
809
|
-
##### [server_url](https://github.com/appium/ruby_lib/blob/
|
809
|
+
##### [server_url](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/sauce_labs.rb#L66)
|
810
810
|
|
811
811
|
> def server_url
|
812
812
|
|
@@ -818,7 +818,7 @@ __Returns:__
|
|
818
818
|
|
819
819
|
--
|
820
820
|
|
821
|
-
##### [get_log](https://github.com/appium/ruby_lib/blob/
|
821
|
+
##### [get_log](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/log.rb#L11)
|
822
822
|
|
823
823
|
> def get_log(type)
|
824
824
|
|
@@ -834,7 +834,7 @@ __Returns:__
|
|
834
834
|
|
835
835
|
--
|
836
836
|
|
837
|
-
##### [get_available_log_types](https://github.com/appium/ruby_lib/blob/
|
837
|
+
##### [get_available_log_types](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/log.rb#L23)
|
838
838
|
|
839
839
|
> def get_available_log_types
|
840
840
|
|
@@ -846,7 +846,7 @@ __Returns:__
|
|
846
846
|
|
847
847
|
--
|
848
848
|
|
849
|
-
##### [wait_true](https://github.com/appium/ruby_lib/blob/
|
849
|
+
##### [wait_true](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/wait.rb#L30)
|
850
850
|
|
851
851
|
> def wait_true(opts = {})
|
852
852
|
|
@@ -862,11 +862,11 @@ If only a number is provided then it's treated as the timeout value.
|
|
862
862
|
|
863
863
|
__Parameters:__
|
864
864
|
|
865
|
-
[Hash] opts - Options
|
865
|
+
[Hash|Numeric] opts - Options. If the value is _Numeric_, the value is set as `{ timeout: value }`
|
866
866
|
|
867
867
|
--
|
868
868
|
|
869
|
-
##### [wait](https://github.com/appium/ruby_lib/blob/
|
869
|
+
##### [wait](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/wait.rb#L59)
|
870
870
|
|
871
871
|
> def wait(opts = {})
|
872
872
|
|
@@ -880,11 +880,11 @@ If only a number is provided then it's treated as the timeout value.
|
|
880
880
|
|
881
881
|
__Parameters:__
|
882
882
|
|
883
|
-
[Hash] opts - Options
|
883
|
+
[Hash|Numeric] opts - Options. If the value is _Numeric_, the value is set as `{ timeout: value }`
|
884
884
|
|
885
885
|
--
|
886
886
|
|
887
|
-
##### [add_touch_actions](https://github.com/appium/ruby_lib/blob/
|
887
|
+
##### [add_touch_actions](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/device.rb#L12)
|
888
888
|
|
889
889
|
> def add_touch_actions
|
890
890
|
|
@@ -892,7 +892,7 @@ __Parameters:__
|
|
892
892
|
|
893
893
|
--
|
894
894
|
|
895
|
-
##### [delegate_from_appium_driver](https://github.com/appium/ruby_lib/blob/
|
895
|
+
##### [delegate_from_appium_driver](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/device.rb#L24)
|
896
896
|
|
897
897
|
> def delegate_from_appium_driver(method, delegation_target)
|
898
898
|
|
@@ -900,7 +900,7 @@ __Parameters:__
|
|
900
900
|
|
901
901
|
--
|
902
902
|
|
903
|
-
##### [ignore](https://github.com/appium/ruby_lib/blob/
|
903
|
+
##### [ignore](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L16)
|
904
904
|
|
905
905
|
> def ignore
|
906
906
|
|
@@ -908,7 +908,7 @@ Return yield and ignore any exceptions.
|
|
908
908
|
|
909
909
|
--
|
910
910
|
|
911
|
-
##### [back](https://github.com/appium/ruby_lib/blob/
|
911
|
+
##### [back](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L23)
|
912
912
|
|
913
913
|
> def back
|
914
914
|
|
@@ -920,7 +920,7 @@ __Returns:__
|
|
920
920
|
|
921
921
|
--
|
922
922
|
|
923
|
-
##### [session_id](https://github.com/appium/ruby_lib/blob/
|
923
|
+
##### [session_id](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L34)
|
924
924
|
|
925
925
|
> def session_id
|
926
926
|
|
@@ -932,7 +932,7 @@ __Returns:__
|
|
932
932
|
|
933
933
|
--
|
934
934
|
|
935
|
-
##### [xpath](https://github.com/appium/ruby_lib/blob/
|
935
|
+
##### [xpath](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L42)
|
936
936
|
|
937
937
|
> def xpath(xpath_str)
|
938
938
|
|
@@ -948,7 +948,7 @@ __Returns:__
|
|
948
948
|
|
949
949
|
--
|
950
950
|
|
951
|
-
##### [xpaths](https://github.com/appium/ruby_lib/blob/
|
951
|
+
##### [xpaths](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L50)
|
952
952
|
|
953
953
|
> def xpaths(xpath_str)
|
954
954
|
|
@@ -964,7 +964,7 @@ __Returns:__
|
|
964
964
|
|
965
965
|
--
|
966
966
|
|
967
|
-
##### [result](https://github.com/appium/ruby_lib/blob/
|
967
|
+
##### [result](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L60)
|
968
968
|
|
969
969
|
> def result
|
970
970
|
|
@@ -972,7 +972,7 @@ Returns the value of attribute result
|
|
972
972
|
|
973
973
|
--
|
974
974
|
|
975
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
975
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L62)
|
976
976
|
|
977
977
|
> def initialize
|
978
978
|
|
@@ -984,7 +984,7 @@ __Returns:__
|
|
984
984
|
|
985
985
|
--
|
986
986
|
|
987
|
-
##### [reset](https://github.com/appium/ruby_lib/blob/
|
987
|
+
##### [reset](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L66)
|
988
988
|
|
989
989
|
> def reset
|
990
990
|
|
@@ -992,7 +992,7 @@ __Returns:__
|
|
992
992
|
|
993
993
|
--
|
994
994
|
|
995
|
-
##### [start_element](https://github.com/appium/ruby_lib/blob/
|
995
|
+
##### [start_element](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L71)
|
996
996
|
|
997
997
|
> def start_element(name, attrs = [], driver = $driver)
|
998
998
|
|
@@ -1000,7 +1000,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html
|
|
1000
1000
|
|
1001
1001
|
--
|
1002
1002
|
|
1003
|
-
##### [formatted_result](https://github.com/appium/ruby_lib/blob/
|
1003
|
+
##### [formatted_result](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L77)
|
1004
1004
|
|
1005
1005
|
> def formatted_result
|
1006
1006
|
|
@@ -1008,7 +1008,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html
|
|
1008
1008
|
|
1009
1009
|
--
|
1010
1010
|
|
1011
|
-
##### [get_page_class](https://github.com/appium/ruby_lib/blob/
|
1011
|
+
##### [get_page_class](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L96)
|
1012
1012
|
|
1013
1013
|
> def get_page_class
|
1014
1014
|
|
@@ -1020,7 +1020,7 @@ __Returns:__
|
|
1020
1020
|
|
1021
1021
|
--
|
1022
1022
|
|
1023
|
-
##### [page_class](https://github.com/appium/ruby_lib/blob/
|
1023
|
+
##### [page_class](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L121)
|
1024
1024
|
|
1025
1025
|
> def page_class
|
1026
1026
|
|
@@ -1033,7 +1033,7 @@ __Returns:__
|
|
1033
1033
|
|
1034
1034
|
--
|
1035
1035
|
|
1036
|
-
##### [source](https://github.com/appium/ruby_lib/blob/
|
1036
|
+
##### [source](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L128)
|
1037
1037
|
|
1038
1038
|
> def source
|
1039
1039
|
|
@@ -1045,7 +1045,7 @@ __Returns:__
|
|
1045
1045
|
|
1046
1046
|
--
|
1047
1047
|
|
1048
|
-
##### [get_source](https://github.com/appium/ruby_lib/blob/
|
1048
|
+
##### [get_source](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L135)
|
1049
1049
|
|
1050
1050
|
> def get_source
|
1051
1051
|
|
@@ -1058,7 +1058,7 @@ __Returns:__
|
|
1058
1058
|
|
1059
1059
|
--
|
1060
1060
|
|
1061
|
-
##### [px_to_window_rel](https://github.com/appium/ruby_lib/blob/
|
1061
|
+
##### [px_to_window_rel](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L145)
|
1062
1062
|
|
1063
1063
|
> def px_to_window_rel(opts = {}, driver = $driver)
|
1064
1064
|
|
@@ -1066,7 +1066,7 @@ Converts pixel values to window relative values
|
|
1066
1066
|
|
1067
1067
|
--
|
1068
1068
|
|
1069
|
-
##### [xml_keys](https://github.com/appium/ruby_lib/blob/
|
1069
|
+
##### [xml_keys](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L164)
|
1070
1070
|
|
1071
1071
|
> def xml_keys(target)
|
1072
1072
|
|
@@ -1082,7 +1082,7 @@ __Returns:__
|
|
1082
1082
|
|
1083
1083
|
--
|
1084
1084
|
|
1085
|
-
##### [xml_values](https://github.com/appium/ruby_lib/blob/
|
1085
|
+
##### [xml_values](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L172)
|
1086
1086
|
|
1087
1087
|
> def xml_values(target)
|
1088
1088
|
|
@@ -1098,7 +1098,7 @@ __Returns:__
|
|
1098
1098
|
|
1099
1099
|
--
|
1100
1100
|
|
1101
|
-
##### [resolve_id](https://github.com/appium/ruby_lib/blob/
|
1101
|
+
##### [resolve_id](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L180)
|
1102
1102
|
|
1103
1103
|
> def resolve_id(id)
|
1104
1104
|
|
@@ -1114,7 +1114,7 @@ __Returns:__
|
|
1114
1114
|
|
1115
1115
|
--
|
1116
1116
|
|
1117
|
-
##### [filter](https://github.com/appium/ruby_lib/blob/
|
1117
|
+
##### [filter](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L187)
|
1118
1118
|
|
1119
1119
|
> def filter
|
1120
1120
|
|
@@ -1122,7 +1122,7 @@ Returns the value of attribute filter
|
|
1122
1122
|
|
1123
1123
|
--
|
1124
1124
|
|
1125
|
-
##### [filter=](https://github.com/appium/ruby_lib/blob/
|
1125
|
+
##### [filter=](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L190)
|
1126
1126
|
|
1127
1127
|
> def filter=(value)
|
1128
1128
|
|
@@ -1130,7 +1130,7 @@ convert to string to support symbols
|
|
1130
1130
|
|
1131
1131
|
--
|
1132
1132
|
|
1133
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
1133
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L196)
|
1134
1134
|
|
1135
1135
|
> def initialize
|
1136
1136
|
|
@@ -1142,7 +1142,7 @@ __Returns:__
|
|
1142
1142
|
|
1143
1143
|
--
|
1144
1144
|
|
1145
|
-
##### [reset](https://github.com/appium/ruby_lib/blob/
|
1145
|
+
##### [reset](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L201)
|
1146
1146
|
|
1147
1147
|
> def reset
|
1148
1148
|
|
@@ -1150,7 +1150,7 @@ __Returns:__
|
|
1150
1150
|
|
1151
1151
|
--
|
1152
1152
|
|
1153
|
-
##### [result](https://github.com/appium/ruby_lib/blob/
|
1153
|
+
##### [result](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L207)
|
1154
1154
|
|
1155
1155
|
> def result
|
1156
1156
|
|
@@ -1158,7 +1158,7 @@ __Returns:__
|
|
1158
1158
|
|
1159
1159
|
--
|
1160
1160
|
|
1161
|
-
##### [start_element](https://github.com/appium/ruby_lib/blob/
|
1161
|
+
##### [start_element](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L223)
|
1162
1162
|
|
1163
1163
|
> def start_element(name, attrs = [])
|
1164
1164
|
|
@@ -1166,7 +1166,7 @@ __Returns:__
|
|
1166
1166
|
|
1167
1167
|
--
|
1168
1168
|
|
1169
|
-
##### [end_element](https://github.com/appium/ruby_lib/blob/
|
1169
|
+
##### [end_element](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L232)
|
1170
1170
|
|
1171
1171
|
> def end_element(name)
|
1172
1172
|
|
@@ -1174,7 +1174,7 @@ __Returns:__
|
|
1174
1174
|
|
1175
1175
|
--
|
1176
1176
|
|
1177
|
-
##### [characters](https://github.com/appium/ruby_lib/blob/
|
1177
|
+
##### [characters](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/helper.rb#L238)
|
1178
1178
|
|
1179
1179
|
> def characters(chars)
|
1180
1180
|
|
@@ -1182,7 +1182,7 @@ __Returns:__
|
|
1182
1182
|
|
1183
1183
|
--
|
1184
1184
|
|
1185
|
-
##### [DEFAULT_HEADERS](https://github.com/appium/ruby_lib/blob/
|
1185
|
+
##### [DEFAULT_HEADERS](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/http_client.rb#L8)
|
1186
1186
|
|
1187
1187
|
> DEFAULT_HEADERS = { 'Accept' => CONTENT_TYPE, 'User-Agent' => "appium/ruby_lib/#{::Appium::VERSION}" }.freeze
|
1188
1188
|
|
@@ -1190,7 +1190,7 @@ Default HTTP client inherit Appium::Core::Base::Http::Default, but has different
|
|
1190
1190
|
|
1191
1191
|
--
|
1192
1192
|
|
1193
|
-
##### [pinch](https://github.com/appium/ruby_lib/blob/
|
1193
|
+
##### [pinch](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/multi_touch.rb#L51)
|
1194
1194
|
|
1195
1195
|
> def pinch(percentage = 25, auto_perform = true, driver = $driver)
|
1196
1196
|
|
@@ -1210,7 +1210,7 @@ __Parameters:__
|
|
1210
1210
|
|
1211
1211
|
--
|
1212
1212
|
|
1213
|
-
##### [zoom](https://github.com/appium/ruby_lib/blob/
|
1213
|
+
##### [zoom](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/multi_touch.rb#L93)
|
1214
1214
|
|
1215
1215
|
> def zoom(percentage = 200, auto_perform = true, driver = $driver)
|
1216
1216
|
|
@@ -1230,7 +1230,7 @@ __Parameters:__
|
|
1230
1230
|
|
1231
1231
|
--
|
1232
1232
|
|
1233
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
1233
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/multi_touch.rb#L178)
|
1234
1234
|
|
1235
1235
|
> def initialize(driver = $driver)
|
1236
1236
|
|
@@ -1242,7 +1242,7 @@ __Returns:__
|
|
1242
1242
|
|
1243
1243
|
--
|
1244
1244
|
|
1245
|
-
##### [COMPLEX_ACTIONS](https://github.com/appium/ruby_lib/blob/
|
1245
|
+
##### [COMPLEX_ACTIONS](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/touch_actions.rb#L33)
|
1246
1246
|
|
1247
1247
|
> COMPLEX_ACTIONS = ::Appium::Core::TouchAction::COMPLEX_ACTIONS
|
1248
1248
|
|
@@ -1250,7 +1250,7 @@ __Returns:__
|
|
1250
1250
|
|
1251
1251
|
--
|
1252
1252
|
|
1253
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
1253
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/touch_actions.rb#L47)
|
1254
1254
|
|
1255
1255
|
> def initialize(driver = $driver)
|
1256
1256
|
|
@@ -1262,7 +1262,7 @@ __Returns:__
|
|
1262
1262
|
|
1263
1263
|
--
|
1264
1264
|
|
1265
|
-
##### [swipe](https://github.com/appium/ruby_lib/blob/
|
1265
|
+
##### [swipe](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/touch_actions.rb#L51)
|
1266
1266
|
|
1267
1267
|
> def swipe(opts)
|
1268
1268
|
|
@@ -1270,7 +1270,27 @@ __Returns:__
|
|
1270
1270
|
|
1271
1271
|
--
|
1272
1272
|
|
1273
|
-
##### [
|
1273
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/command/ws_logcat.rb#L5)
|
1274
|
+
|
1275
|
+
> def initialize(url:, output_file: 'logcat.log')
|
1276
|
+
|
1277
|
+
|
1278
|
+
|
1279
|
+
__Returns:__
|
1280
|
+
|
1281
|
+
[WsLogcat] a new instance of WsLogcat
|
1282
|
+
|
1283
|
+
--
|
1284
|
+
|
1285
|
+
##### [handle_message_data](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/common/command/ws_logcat.rb#L10)
|
1286
|
+
|
1287
|
+
> def handle_message_data(data)
|
1288
|
+
|
1289
|
+
|
1290
|
+
|
1291
|
+
--
|
1292
|
+
|
1293
|
+
##### [for](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/android.rb#L19) android
|
1274
1294
|
|
1275
1295
|
> def self.for(target)
|
1276
1296
|
|
@@ -1278,7 +1298,7 @@ __Returns:__
|
|
1278
1298
|
|
1279
1299
|
--
|
1280
1300
|
|
1281
|
-
##### [TextView](https://github.com/appium/ruby_lib/blob/
|
1301
|
+
##### [TextView](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/text.rb#L4) android
|
1282
1302
|
|
1283
1303
|
> TextView = 'android.widget.TextView'.freeze
|
1284
1304
|
|
@@ -1286,7 +1306,7 @@ __Returns:__
|
|
1286
1306
|
|
1287
1307
|
--
|
1288
1308
|
|
1289
|
-
##### [text](https://github.com/appium/ruby_lib/blob/
|
1309
|
+
##### [text](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/text.rb#L10) android
|
1290
1310
|
|
1291
1311
|
> def text(value)
|
1292
1312
|
|
@@ -1303,7 +1323,7 @@ __Returns:__
|
|
1303
1323
|
|
1304
1324
|
--
|
1305
1325
|
|
1306
|
-
##### [texts](https://github.com/appium/ruby_lib/blob/
|
1326
|
+
##### [texts](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/text.rb#L19) android
|
1307
1327
|
|
1308
1328
|
> def texts(value = false)
|
1309
1329
|
|
@@ -1320,7 +1340,7 @@ __Returns:__
|
|
1320
1340
|
|
1321
1341
|
--
|
1322
1342
|
|
1323
|
-
##### [first_text](https://github.com/appium/ruby_lib/blob/
|
1343
|
+
##### [first_text](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/text.rb#L26) android
|
1324
1344
|
|
1325
1345
|
> def first_text
|
1326
1346
|
|
@@ -1332,7 +1352,7 @@ __Returns:__
|
|
1332
1352
|
|
1333
1353
|
--
|
1334
1354
|
|
1335
|
-
##### [last_text](https://github.com/appium/ruby_lib/blob/
|
1355
|
+
##### [last_text](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/text.rb#L32) android
|
1336
1356
|
|
1337
1357
|
> def last_text
|
1338
1358
|
|
@@ -1344,7 +1364,7 @@ __Returns:__
|
|
1344
1364
|
|
1345
1365
|
--
|
1346
1366
|
|
1347
|
-
##### [text_exact](https://github.com/appium/ruby_lib/blob/
|
1367
|
+
##### [text_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/text.rb#L39) android
|
1348
1368
|
|
1349
1369
|
> def text_exact(value)
|
1350
1370
|
|
@@ -1360,7 +1380,7 @@ __Returns:__
|
|
1360
1380
|
|
1361
1381
|
--
|
1362
1382
|
|
1363
|
-
##### [texts_exact](https://github.com/appium/ruby_lib/blob/
|
1383
|
+
##### [texts_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/text.rb#L46) android
|
1364
1384
|
|
1365
1385
|
> def texts_exact(value)
|
1366
1386
|
|
@@ -1376,7 +1396,7 @@ __Returns:__
|
|
1376
1396
|
|
1377
1397
|
--
|
1378
1398
|
|
1379
|
-
##### [result](https://github.com/appium/ruby_lib/blob/
|
1399
|
+
##### [result](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L6) android
|
1380
1400
|
|
1381
1401
|
> def result
|
1382
1402
|
|
@@ -1384,7 +1404,7 @@ Returns the value of attribute result
|
|
1384
1404
|
|
1385
1405
|
--
|
1386
1406
|
|
1387
|
-
##### [keys](https://github.com/appium/ruby_lib/blob/
|
1407
|
+
##### [keys](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L6) android
|
1388
1408
|
|
1389
1409
|
> def keys
|
1390
1410
|
|
@@ -1392,7 +1412,7 @@ Returns the value of attribute keys
|
|
1392
1412
|
|
1393
1413
|
--
|
1394
1414
|
|
1395
|
-
##### [filter](https://github.com/appium/ruby_lib/blob/
|
1415
|
+
##### [filter](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L6) android
|
1396
1416
|
|
1397
1417
|
> def filter
|
1398
1418
|
|
@@ -1400,7 +1420,7 @@ Returns the value of attribute filter
|
|
1400
1420
|
|
1401
1421
|
--
|
1402
1422
|
|
1403
|
-
##### [filter=](https://github.com/appium/ruby_lib/blob/
|
1423
|
+
##### [filter=](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L9) android
|
1404
1424
|
|
1405
1425
|
> def filter=(value)
|
1406
1426
|
|
@@ -1408,7 +1428,7 @@ convert to string to support symbols
|
|
1408
1428
|
|
1409
1429
|
--
|
1410
1430
|
|
1411
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
1431
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L15) android
|
1412
1432
|
|
1413
1433
|
> def initialize
|
1414
1434
|
|
@@ -1420,7 +1440,7 @@ __Returns:__
|
|
1420
1440
|
|
1421
1441
|
--
|
1422
1442
|
|
1423
|
-
##### [reset](https://github.com/appium/ruby_lib/blob/
|
1443
|
+
##### [reset](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L20) android
|
1424
1444
|
|
1425
1445
|
> def reset
|
1426
1446
|
|
@@ -1428,7 +1448,7 @@ __Returns:__
|
|
1428
1448
|
|
1429
1449
|
--
|
1430
1450
|
|
1431
|
-
##### [start_element](https://github.com/appium/ruby_lib/blob/
|
1451
|
+
##### [start_element](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L26) android
|
1432
1452
|
|
1433
1453
|
> def start_element(name, attrs = [], driver = $driver)
|
1434
1454
|
|
@@ -1436,7 +1456,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html
|
|
1436
1456
|
|
1437
1457
|
--
|
1438
1458
|
|
1439
|
-
##### [get_android_inspect](https://github.com/appium/ruby_lib/blob/
|
1459
|
+
##### [get_android_inspect](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L80) android
|
1440
1460
|
|
1441
1461
|
> def get_android_inspect(class_name = false)
|
1442
1462
|
|
@@ -1455,7 +1475,7 @@ __Returns:__
|
|
1455
1475
|
|
1456
1476
|
--
|
1457
1477
|
|
1458
|
-
##### [page](https://github.com/appium/ruby_lib/blob/
|
1478
|
+
##### [page](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L106) android
|
1459
1479
|
|
1460
1480
|
> def page(opts = {})
|
1461
1481
|
|
@@ -1474,7 +1494,7 @@ __Returns:__
|
|
1474
1494
|
|
1475
1495
|
--
|
1476
1496
|
|
1477
|
-
##### [id](https://github.com/appium/ruby_lib/blob/
|
1497
|
+
##### [id](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L115) android
|
1478
1498
|
|
1479
1499
|
> def id(id)
|
1480
1500
|
|
@@ -1490,7 +1510,7 @@ __Returns:__
|
|
1490
1510
|
|
1491
1511
|
--
|
1492
1512
|
|
1493
|
-
##### [ids](https://github.com/appium/ruby_lib/blob/
|
1513
|
+
##### [ids](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L123) android
|
1494
1514
|
|
1495
1515
|
> def ids(id)
|
1496
1516
|
|
@@ -1506,7 +1526,7 @@ __Returns:__
|
|
1506
1526
|
|
1507
1527
|
--
|
1508
1528
|
|
1509
|
-
##### [ele_index](https://github.com/appium/ruby_lib/blob/
|
1529
|
+
##### [ele_index](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L132) android
|
1510
1530
|
|
1511
1531
|
> def ele_index(class_name, index)
|
1512
1532
|
|
@@ -1524,7 +1544,7 @@ __Returns:__
|
|
1524
1544
|
|
1525
1545
|
--
|
1526
1546
|
|
1527
|
-
##### [first_ele](https://github.com/appium/ruby_lib/blob/
|
1547
|
+
##### [first_ele](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L150) android
|
1528
1548
|
|
1529
1549
|
> def first_ele(class_name)
|
1530
1550
|
|
@@ -1540,7 +1560,7 @@ __Returns:__
|
|
1540
1560
|
|
1541
1561
|
--
|
1542
1562
|
|
1543
|
-
##### [last_ele](https://github.com/appium/ruby_lib/blob/
|
1563
|
+
##### [last_ele](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L157) android
|
1544
1564
|
|
1545
1565
|
> def last_ele(class_name)
|
1546
1566
|
|
@@ -1556,7 +1576,7 @@ __Returns:__
|
|
1556
1576
|
|
1557
1577
|
--
|
1558
1578
|
|
1559
|
-
##### [tag](https://github.com/appium/ruby_lib/blob/
|
1579
|
+
##### [tag](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L165) android
|
1560
1580
|
|
1561
1581
|
> def tag(class_name)
|
1562
1582
|
|
@@ -1572,7 +1592,7 @@ __Returns:__
|
|
1572
1592
|
|
1573
1593
|
--
|
1574
1594
|
|
1575
|
-
##### [tags](https://github.com/appium/ruby_lib/blob/
|
1595
|
+
##### [tags](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L173) android
|
1576
1596
|
|
1577
1597
|
> def tags(class_name)
|
1578
1598
|
|
@@ -1588,7 +1608,7 @@ __Returns:__
|
|
1588
1608
|
|
1589
1609
|
--
|
1590
1610
|
|
1591
|
-
##### [string_visible_contains_xpath](https://github.com/appium/ruby_lib/blob/
|
1611
|
+
##### [string_visible_contains_xpath](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L216) android
|
1592
1612
|
|
1593
1613
|
> def string_visible_contains_xpath(class_name, value)
|
1594
1614
|
|
@@ -1609,7 +1629,7 @@ __Returns:__
|
|
1609
1629
|
|
1610
1630
|
--
|
1611
1631
|
|
1612
|
-
##### [string_visible_contains](https://github.com/appium/ruby_lib/blob/
|
1632
|
+
##### [string_visible_contains](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L236) android
|
1613
1633
|
|
1614
1634
|
> def string_visible_contains(class_name, value)
|
1615
1635
|
|
@@ -1630,7 +1650,7 @@ __Returns:__
|
|
1630
1650
|
|
1631
1651
|
--
|
1632
1652
|
|
1633
|
-
##### [complex_find_contains](https://github.com/appium/ruby_lib/blob/
|
1653
|
+
##### [complex_find_contains](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L254) android
|
1634
1654
|
|
1635
1655
|
> def complex_find_contains(class_name, value)
|
1636
1656
|
|
@@ -1648,7 +1668,7 @@ __Returns:__
|
|
1648
1668
|
|
1649
1669
|
--
|
1650
1670
|
|
1651
|
-
##### [complex_finds_contains](https://github.com/appium/ruby_lib/blob/
|
1671
|
+
##### [complex_finds_contains](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L262) android
|
1652
1672
|
|
1653
1673
|
> def complex_finds_contains(class_name, value)
|
1654
1674
|
|
@@ -1666,7 +1686,7 @@ __Returns:__
|
|
1666
1686
|
|
1667
1687
|
--
|
1668
1688
|
|
1669
|
-
##### [complex_find_exact](https://github.com/appium/ruby_lib/blob/
|
1689
|
+
##### [complex_find_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L306) android
|
1670
1690
|
|
1671
1691
|
> def complex_find_exact(class_name, value)
|
1672
1692
|
|
@@ -1684,7 +1704,7 @@ __Returns:__
|
|
1684
1704
|
|
1685
1705
|
--
|
1686
1706
|
|
1687
|
-
##### [complex_finds_exact](https://github.com/appium/ruby_lib/blob/
|
1707
|
+
##### [complex_finds_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/helper.rb#L314) android
|
1688
1708
|
|
1689
1709
|
> def complex_finds_exact(class_name, value)
|
1690
1710
|
|
@@ -1702,7 +1722,7 @@ __Returns:__
|
|
1702
1722
|
|
1703
1723
|
--
|
1704
1724
|
|
1705
|
-
##### [alert_click](https://github.com/appium/ruby_lib/blob/
|
1725
|
+
##### [alert_click](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/alert.rb#L6) android
|
1706
1726
|
|
1707
1727
|
> def alert_click(value)
|
1708
1728
|
|
@@ -1718,7 +1738,7 @@ __Returns:__
|
|
1718
1738
|
|
1719
1739
|
--
|
1720
1740
|
|
1721
|
-
##### [alert_accept](https://github.com/appium/ruby_lib/blob/
|
1741
|
+
##### [alert_accept](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/alert.rb#L13) android
|
1722
1742
|
|
1723
1743
|
> def alert_accept
|
1724
1744
|
|
@@ -1731,7 +1751,7 @@ __Returns:__
|
|
1731
1751
|
|
1732
1752
|
--
|
1733
1753
|
|
1734
|
-
##### [alert_accept_text](https://github.com/appium/ruby_lib/blob/
|
1754
|
+
##### [alert_accept_text](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/alert.rb#L20) android
|
1735
1755
|
|
1736
1756
|
> def alert_accept_text
|
1737
1757
|
|
@@ -1744,7 +1764,7 @@ __Returns:__
|
|
1744
1764
|
|
1745
1765
|
--
|
1746
1766
|
|
1747
|
-
##### [alert_dismiss](https://github.com/appium/ruby_lib/blob/
|
1767
|
+
##### [alert_dismiss](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/alert.rb#L27) android
|
1748
1768
|
|
1749
1769
|
> def alert_dismiss
|
1750
1770
|
|
@@ -1757,7 +1777,7 @@ __Returns:__
|
|
1757
1777
|
|
1758
1778
|
--
|
1759
1779
|
|
1760
|
-
##### [alert_dismiss_text](https://github.com/appium/ruby_lib/blob/
|
1780
|
+
##### [alert_dismiss_text](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/alert.rb#L34) android
|
1761
1781
|
|
1762
1782
|
> def alert_dismiss_text
|
1763
1783
|
|
@@ -1770,7 +1790,7 @@ __Returns:__
|
|
1770
1790
|
|
1771
1791
|
--
|
1772
1792
|
|
1773
|
-
##### [Button](https://github.com/appium/ruby_lib/blob/
|
1793
|
+
##### [Button](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/button.rb#L3) android
|
1774
1794
|
|
1775
1795
|
> Button = 'android.widget.Button'.freeze
|
1776
1796
|
|
@@ -1778,7 +1798,7 @@ __Returns:__
|
|
1778
1798
|
|
1779
1799
|
--
|
1780
1800
|
|
1781
|
-
##### [ImageButton](https://github.com/appium/ruby_lib/blob/
|
1801
|
+
##### [ImageButton](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/button.rb#L4) android
|
1782
1802
|
|
1783
1803
|
> ImageButton = 'android.widget.ImageButton'.freeze
|
1784
1804
|
|
@@ -1786,7 +1806,7 @@ __Returns:__
|
|
1786
1806
|
|
1787
1807
|
--
|
1788
1808
|
|
1789
|
-
##### [button](https://github.com/appium/ruby_lib/blob/
|
1809
|
+
##### [button](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/button.rb#L10) android
|
1790
1810
|
|
1791
1811
|
> def button(value)
|
1792
1812
|
|
@@ -1803,7 +1823,7 @@ __Returns:__
|
|
1803
1823
|
|
1804
1824
|
--
|
1805
1825
|
|
1806
|
-
##### [buttons](https://github.com/appium/ruby_lib/blob/
|
1826
|
+
##### [buttons](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/button.rb#L27) android
|
1807
1827
|
|
1808
1828
|
> def buttons(value = false)
|
1809
1829
|
|
@@ -1820,7 +1840,7 @@ __Returns:__
|
|
1820
1840
|
|
1821
1841
|
--
|
1822
1842
|
|
1823
|
-
##### [first_button](https://github.com/appium/ruby_lib/blob/
|
1843
|
+
##### [first_button](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/button.rb#L34) android
|
1824
1844
|
|
1825
1845
|
> def first_button
|
1826
1846
|
|
@@ -1832,7 +1852,7 @@ __Returns:__
|
|
1832
1852
|
|
1833
1853
|
--
|
1834
1854
|
|
1835
|
-
##### [last_button](https://github.com/appium/ruby_lib/blob/
|
1855
|
+
##### [last_button](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/button.rb#L40) android
|
1836
1856
|
|
1837
1857
|
> def last_button
|
1838
1858
|
|
@@ -1844,7 +1864,7 @@ __Returns:__
|
|
1844
1864
|
|
1845
1865
|
--
|
1846
1866
|
|
1847
|
-
##### [button_exact](https://github.com/appium/ruby_lib/blob/
|
1867
|
+
##### [button_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/button.rb#L56) android
|
1848
1868
|
|
1849
1869
|
> def button_exact(value)
|
1850
1870
|
|
@@ -1860,7 +1880,7 @@ __Returns:__
|
|
1860
1880
|
|
1861
1881
|
--
|
1862
1882
|
|
1863
|
-
##### [buttons_exact](https://github.com/appium/ruby_lib/blob/
|
1883
|
+
##### [buttons_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/button.rb#L63) android
|
1864
1884
|
|
1865
1885
|
> def buttons_exact(value)
|
1866
1886
|
|
@@ -1876,7 +1896,7 @@ __Returns:__
|
|
1876
1896
|
|
1877
1897
|
--
|
1878
1898
|
|
1879
|
-
##### [find](https://github.com/appium/ruby_lib/blob/
|
1899
|
+
##### [find](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/generic.rb#L6) android
|
1880
1900
|
|
1881
1901
|
> def find(value)
|
1882
1902
|
|
@@ -1892,7 +1912,7 @@ __Returns:__
|
|
1892
1912
|
|
1893
1913
|
--
|
1894
1914
|
|
1895
|
-
##### [finds](https://github.com/appium/ruby_lib/blob/
|
1915
|
+
##### [finds](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/generic.rb#L13) android
|
1896
1916
|
|
1897
1917
|
> def finds(value)
|
1898
1918
|
|
@@ -1908,7 +1928,7 @@ __Returns:__
|
|
1908
1928
|
|
1909
1929
|
--
|
1910
1930
|
|
1911
|
-
##### [find_exact](https://github.com/appium/ruby_lib/blob/
|
1931
|
+
##### [find_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/generic.rb#L20) android
|
1912
1932
|
|
1913
1933
|
> def find_exact(value)
|
1914
1934
|
|
@@ -1924,7 +1944,7 @@ __Returns:__
|
|
1924
1944
|
|
1925
1945
|
--
|
1926
1946
|
|
1927
|
-
##### [finds_exact](https://github.com/appium/ruby_lib/blob/
|
1947
|
+
##### [finds_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/generic.rb#L27) android
|
1928
1948
|
|
1929
1949
|
> def finds_exact(value)
|
1930
1950
|
|
@@ -1940,7 +1960,7 @@ __Returns:__
|
|
1940
1960
|
|
1941
1961
|
--
|
1942
1962
|
|
1943
|
-
##### [scroll_to](https://github.com/appium/ruby_lib/blob/
|
1963
|
+
##### [scroll_to](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/generic.rb#L40) android
|
1944
1964
|
|
1945
1965
|
> def scroll_to(text, scrollable_index = 0)
|
1946
1966
|
|
@@ -1958,7 +1978,7 @@ __Returns:__
|
|
1958
1978
|
|
1959
1979
|
--
|
1960
1980
|
|
1961
|
-
##### [scroll_to_exact](https://github.com/appium/ruby_lib/blob/
|
1981
|
+
##### [scroll_to_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/generic.rb#L58) android
|
1962
1982
|
|
1963
1983
|
> def scroll_to_exact(text, scrollable_index = 0)
|
1964
1984
|
|
@@ -1976,7 +1996,7 @@ __Returns:__
|
|
1976
1996
|
|
1977
1997
|
--
|
1978
1998
|
|
1979
|
-
##### [for](https://github.com/appium/ruby_lib/blob/
|
1999
|
+
##### [for](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/espresso/bridge.rb#L7) android
|
1980
2000
|
|
1981
2001
|
> def self.for(target)
|
1982
2002
|
|
@@ -1984,7 +2004,7 @@ __Returns:__
|
|
1984
2004
|
|
1985
2005
|
--
|
1986
2006
|
|
1987
|
-
##### [EditText](https://github.com/appium/ruby_lib/blob/
|
2007
|
+
##### [EditText](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/textfield.rb#L3) android
|
1988
2008
|
|
1989
2009
|
> EditText = 'android.widget.EditText'.freeze
|
1990
2010
|
|
@@ -1992,7 +2012,7 @@ __Returns:__
|
|
1992
2012
|
|
1993
2013
|
--
|
1994
2014
|
|
1995
|
-
##### [textfield](https://github.com/appium/ruby_lib/blob/
|
2015
|
+
##### [textfield](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/textfield.rb#L9) android
|
1996
2016
|
|
1997
2017
|
> def textfield(value)
|
1998
2018
|
|
@@ -2009,7 +2029,7 @@ __Returns:__
|
|
2009
2029
|
|
2010
2030
|
--
|
2011
2031
|
|
2012
|
-
##### [textfields](https://github.com/appium/ruby_lib/blob/
|
2032
|
+
##### [textfields](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/textfield.rb#L18) android
|
2013
2033
|
|
2014
2034
|
> def textfields(value = false)
|
2015
2035
|
|
@@ -2026,7 +2046,7 @@ __Returns:__
|
|
2026
2046
|
|
2027
2047
|
--
|
2028
2048
|
|
2029
|
-
##### [first_textfield](https://github.com/appium/ruby_lib/blob/
|
2049
|
+
##### [first_textfield](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/textfield.rb#L25) android
|
2030
2050
|
|
2031
2051
|
> def first_textfield
|
2032
2052
|
|
@@ -2038,7 +2058,7 @@ __Returns:__
|
|
2038
2058
|
|
2039
2059
|
--
|
2040
2060
|
|
2041
|
-
##### [last_textfield](https://github.com/appium/ruby_lib/blob/
|
2061
|
+
##### [last_textfield](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/textfield.rb#L31) android
|
2042
2062
|
|
2043
2063
|
> def last_textfield
|
2044
2064
|
|
@@ -2050,7 +2070,7 @@ __Returns:__
|
|
2050
2070
|
|
2051
2071
|
--
|
2052
2072
|
|
2053
|
-
##### [textfield_exact](https://github.com/appium/ruby_lib/blob/
|
2073
|
+
##### [textfield_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/textfield.rb#L38) android
|
2054
2074
|
|
2055
2075
|
> def textfield_exact(value)
|
2056
2076
|
|
@@ -2066,7 +2086,7 @@ __Returns:__
|
|
2066
2086
|
|
2067
2087
|
--
|
2068
2088
|
|
2069
|
-
##### [textfields_exact](https://github.com/appium/ruby_lib/blob/
|
2089
|
+
##### [textfields_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/element/textfield.rb#L45) android
|
2070
2090
|
|
2071
2091
|
> def textfields_exact(value)
|
2072
2092
|
|
@@ -2082,7 +2102,7 @@ __Returns:__
|
|
2082
2102
|
|
2083
2103
|
--
|
2084
2104
|
|
2085
|
-
##### [for](https://github.com/appium/ruby_lib/blob/
|
2105
|
+
##### [for](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/bridge.rb#L7) android
|
2086
2106
|
|
2087
2107
|
> def self.for(target)
|
2088
2108
|
|
@@ -2090,7 +2110,7 @@ __Returns:__
|
|
2090
2110
|
|
2091
2111
|
--
|
2092
2112
|
|
2093
|
-
##### [string_visible_contains](https://github.com/appium/ruby_lib/blob/
|
2113
|
+
##### [string_visible_contains](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/helper.rb#L13) android
|
2094
2114
|
|
2095
2115
|
> def string_visible_contains(class_name, value)
|
2096
2116
|
|
@@ -2111,7 +2131,7 @@ __Returns:__
|
|
2111
2131
|
|
2112
2132
|
--
|
2113
2133
|
|
2114
|
-
##### [complex_find_contains](https://github.com/appium/ruby_lib/blob/
|
2134
|
+
##### [complex_find_contains](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/helper.rb#L31) android
|
2115
2135
|
|
2116
2136
|
> def complex_find_contains(class_name, value)
|
2117
2137
|
|
@@ -2129,7 +2149,7 @@ __Returns:__
|
|
2129
2149
|
|
2130
2150
|
--
|
2131
2151
|
|
2132
|
-
##### [complex_finds_contains](https://github.com/appium/ruby_lib/blob/
|
2152
|
+
##### [complex_finds_contains](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/helper.rb#L41) android
|
2133
2153
|
|
2134
2154
|
> def complex_finds_contains(class_name, value)
|
2135
2155
|
|
@@ -2147,7 +2167,7 @@ __Returns:__
|
|
2147
2167
|
|
2148
2168
|
--
|
2149
2169
|
|
2150
|
-
##### [complex_find_exact](https://github.com/appium/ruby_lib/blob/
|
2170
|
+
##### [complex_find_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/helper.rb#L69) android
|
2151
2171
|
|
2152
2172
|
> def complex_find_exact(class_name, value)
|
2153
2173
|
|
@@ -2165,7 +2185,7 @@ __Returns:__
|
|
2165
2185
|
|
2166
2186
|
--
|
2167
2187
|
|
2168
|
-
##### [complex_finds_exact](https://github.com/appium/ruby_lib/blob/
|
2188
|
+
##### [complex_finds_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/helper.rb#L79) android
|
2169
2189
|
|
2170
2190
|
> def complex_finds_exact(class_name, value)
|
2171
2191
|
|
@@ -2183,7 +2203,7 @@ __Returns:__
|
|
2183
2203
|
|
2184
2204
|
--
|
2185
2205
|
|
2186
|
-
##### [shell](https://github.com/appium/ruby_lib/blob/
|
2206
|
+
##### [shell](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/command/command.rb#L14) android
|
2187
2207
|
|
2188
2208
|
> def shell(command, arguments)
|
2189
2209
|
|
@@ -2198,7 +2218,7 @@ __Parameters:__
|
|
2198
2218
|
|
2199
2219
|
--
|
2200
2220
|
|
2201
|
-
##### [start_logs_broadcast](https://github.com/appium/ruby_lib/blob/
|
2221
|
+
##### [start_logs_broadcast](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/command/command.rb#L28) android
|
2202
2222
|
|
2203
2223
|
> def start_logs_broadcast(logcat_file = 'logcat.log')
|
2204
2224
|
|
@@ -2210,7 +2230,7 @@ __Parameters:__
|
|
2210
2230
|
|
2211
2231
|
--
|
2212
2232
|
|
2213
|
-
##### [stop_logs_broadcast](https://github.com/appium/ruby_lib/blob/
|
2233
|
+
##### [stop_logs_broadcast](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/common/command/command.rb#L41) android
|
2214
2234
|
|
2215
2235
|
> def stop_logs_broadcast
|
2216
2236
|
|
@@ -2218,27 +2238,7 @@ Stop Android logcat broadcast websocket
|
|
2218
2238
|
|
2219
2239
|
--
|
2220
2240
|
|
2221
|
-
##### [
|
2222
|
-
|
2223
|
-
> def initialize(url:, output_file: 'logcat.log')
|
2224
|
-
|
2225
|
-
|
2226
|
-
|
2227
|
-
__Returns:__
|
2228
|
-
|
2229
|
-
[WsLogcat] a new instance of WsLogcat
|
2230
|
-
|
2231
|
-
--
|
2232
|
-
|
2233
|
-
##### [handle_message_data](https://github.com/appium/ruby_lib/blob/7c3d3c3302c856b88f75edd1a9988bda3a6b39d6/lib/appium_lib/android/common/command/ws_logcat.rb#L10) android
|
2234
|
-
|
2235
|
-
> def handle_message_data(data)
|
2236
|
-
|
2237
|
-
|
2238
|
-
|
2239
|
-
--
|
2240
|
-
|
2241
|
-
##### [button](https://github.com/appium/ruby_lib/blob/7c3d3c3302c856b88f75edd1a9988bda3a6b39d6/lib/appium_lib/android/uiautomator2/element/button.rb#L9) android
|
2241
|
+
##### [button](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/element/button.rb#L9) android
|
2242
2242
|
|
2243
2243
|
> def button(value)
|
2244
2244
|
|
@@ -2255,7 +2255,7 @@ __Returns:__
|
|
2255
2255
|
|
2256
2256
|
--
|
2257
2257
|
|
2258
|
-
##### [buttons](https://github.com/appium/ruby_lib/blob/
|
2258
|
+
##### [buttons](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/element/button.rb#L29) android
|
2259
2259
|
|
2260
2260
|
> def buttons(value = false)
|
2261
2261
|
|
@@ -2272,7 +2272,7 @@ __Returns:__
|
|
2272
2272
|
|
2273
2273
|
--
|
2274
2274
|
|
2275
|
-
##### [first_button](https://github.com/appium/ruby_lib/blob/
|
2275
|
+
##### [first_button](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/element/button.rb#L36) android
|
2276
2276
|
|
2277
2277
|
> def first_button
|
2278
2278
|
|
@@ -2284,7 +2284,7 @@ __Returns:__
|
|
2284
2284
|
|
2285
2285
|
--
|
2286
2286
|
|
2287
|
-
##### [last_button](https://github.com/appium/ruby_lib/blob/
|
2287
|
+
##### [last_button](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/element/button.rb#L43) android
|
2288
2288
|
|
2289
2289
|
> def last_button
|
2290
2290
|
|
@@ -2296,7 +2296,7 @@ __Returns:__
|
|
2296
2296
|
|
2297
2297
|
--
|
2298
2298
|
|
2299
|
-
##### [button_exact](https://github.com/appium/ruby_lib/blob/
|
2299
|
+
##### [button_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/element/button.rb#L60) android
|
2300
2300
|
|
2301
2301
|
> def button_exact(value)
|
2302
2302
|
|
@@ -2312,7 +2312,7 @@ __Returns:__
|
|
2312
2312
|
|
2313
2313
|
--
|
2314
2314
|
|
2315
|
-
##### [buttons_exact](https://github.com/appium/ruby_lib/blob/
|
2315
|
+
##### [buttons_exact](https://github.com/appium/ruby_lib/blob/6efdc712722bf20384fc3d2a11f16ab17dd4e3ff/lib/appium_lib/android/uiautomator2/element/button.rb#L68) android
|
2316
2316
|
|
2317
2317
|
> def buttons_exact(value)
|
2318
2318
|
|