appium_lib 10.2.0 → 10.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -14
- data/.travis.yml +0 -2
- data/CHANGELOG.md +9 -0
- data/Gemfile +14 -0
- data/Rakefile +14 -0
- data/appium_lib.gemspec +2 -2
- data/docs/android_docs.md +261 -229
- data/docs/ios_docs.md +346 -282
- data/lib/appium_lib.rb +14 -0
- data/lib/appium_lib/android/android.rb +14 -0
- data/lib/appium_lib/android/common/command/command.rb +14 -0
- data/lib/appium_lib/android/common/helper.rb +14 -0
- data/lib/appium_lib/android/element/alert.rb +14 -0
- data/lib/appium_lib/android/element/button.rb +35 -18
- data/lib/appium_lib/android/element/generic.rb +14 -0
- data/lib/appium_lib/android/element/text.rb +29 -14
- data/lib/appium_lib/android/element/textfield.rb +30 -15
- data/lib/appium_lib/android/espresso.rb +14 -0
- data/lib/appium_lib/android/espresso/bridge.rb +14 -0
- data/lib/appium_lib/android/espresso/element.rb +14 -0
- data/lib/appium_lib/android/espresso/element/button.rb +26 -12
- data/lib/appium_lib/android/espresso/element/generic.rb +14 -0
- data/lib/appium_lib/android/espresso/helper.rb +14 -0
- data/lib/appium_lib/android/uiautomator2.rb +14 -0
- data/lib/appium_lib/android/uiautomator2/bridge.rb +14 -0
- data/lib/appium_lib/android/uiautomator2/element.rb +14 -0
- data/lib/appium_lib/android/uiautomator2/element/button.rb +14 -0
- data/lib/appium_lib/android/uiautomator2/helper.rb +14 -0
- data/lib/appium_lib/appium.rb +14 -0
- data/lib/appium_lib/common/command.rb +14 -0
- data/lib/appium_lib/common/command/ws_logcat.rb +14 -0
- data/lib/appium_lib/common/device.rb +14 -0
- data/lib/appium_lib/common/helper.rb +19 -5
- data/lib/appium_lib/common/http_client.rb +14 -0
- data/lib/appium_lib/common/log.rb +14 -0
- data/lib/appium_lib/common/multi_touch.rb +14 -0
- data/lib/appium_lib/common/touch_actions.rb +14 -0
- data/lib/appium_lib/common/wait.rb +14 -0
- data/lib/appium_lib/driver.rb +16 -2
- data/lib/appium_lib/ios/common/errors.rb +14 -0
- data/lib/appium_lib/ios/common/helper.rb +15 -1
- data/lib/appium_lib/ios/element/alert.rb +14 -0
- data/lib/appium_lib/ios/element/button.rb +26 -9
- data/lib/appium_lib/ios/element/generic.rb +14 -0
- data/lib/appium_lib/ios/element/text.rb +26 -9
- data/lib/appium_lib/ios/element/textfield.rb +25 -7
- data/lib/appium_lib/ios/ios.rb +14 -0
- data/lib/appium_lib/ios/xcuitest.rb +14 -0
- data/lib/appium_lib/ios/xcuitest/bridge.rb +14 -0
- data/lib/appium_lib/ios/xcuitest/command.rb +14 -0
- data/lib/appium_lib/ios/xcuitest/command/certificate.rb +14 -0
- data/lib/appium_lib/ios/xcuitest/command/gestures.rb +14 -0
- data/lib/appium_lib/ios/xcuitest/command/get_context.rb +14 -0
- data/lib/appium_lib/ios/xcuitest/command/multi_app_handler.rb +14 -0
- data/lib/appium_lib/ios/xcuitest/command/pasteboard.rb +14 -0
- data/lib/appium_lib/ios/xcuitest/command/source.rb +14 -0
- data/lib/appium_lib/ios/xcuitest/element.rb +14 -0
- data/lib/appium_lib/ios/xcuitest/element/button.rb +22 -8
- data/lib/appium_lib/ios/xcuitest/element/generic.rb +14 -0
- data/lib/appium_lib/ios/xcuitest/element/text.rb +22 -8
- data/lib/appium_lib/ios/xcuitest/element/textfield.rb +18 -4
- data/lib/appium_lib/ios/xcuitest/helper.rb +14 -0
- data/lib/appium_lib/sauce_labs.rb +14 -0
- data/lib/appium_lib/version.rb +16 -2
- data/release_notes.md +7 -0
- metadata +4 -4
data/docs/ios_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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/appium.rb#L60) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/appium.rb#L96) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/appium.rb#L101) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/appium.rb#L143) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/appium.rb#L199) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L49) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L49) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L52) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L55) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L58) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L61) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L65) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L66) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L67) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L68) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L69) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L70) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L71) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L72) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L73) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L74) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L75) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L76) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L79) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L81) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L84) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L86) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L154) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L273) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L295) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L299) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L303) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L309) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L315) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L321) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L341) common
|
403
403
|
|
404
404
|
> def dialect
|
405
405
|
|
@@ -421,7 +421,7 @@ __Returns:__
|
|
421
421
|
|
422
422
|
--
|
423
423
|
|
424
|
-
##### [action](https://github.com/appium/ruby_lib/blob/
|
424
|
+
##### [action](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L355) common
|
425
425
|
|
426
426
|
> def action
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L375) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L383) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L387) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L400) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L412) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L435) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L444) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L457) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L471) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L478) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L481) common
|
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/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L492) common
|
585
585
|
|
586
586
|
> def window_size
|
587
587
|
|
@@ -593,7 +593,7 @@ __Returns:__
|
|
593
593
|
|
594
594
|
--
|
595
595
|
|
596
|
-
##### [window_rect](https://github.com/appium/ruby_lib/blob/
|
596
|
+
##### [window_rect](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L507) common
|
597
597
|
|
598
598
|
> def window_rect
|
599
599
|
|
@@ -605,7 +605,7 @@ __Returns:__
|
|
605
605
|
|
606
606
|
--
|
607
607
|
|
608
|
-
##### [start_driver](https://github.com/appium/ruby_lib/blob/
|
608
|
+
##### [start_driver](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L540) common
|
609
609
|
|
610
610
|
> def start_driver(http_client_ops =
|
611
611
|
|
@@ -625,7 +625,7 @@ __Returns:__
|
|
625
625
|
|
626
626
|
--
|
627
627
|
|
628
|
-
##### [set_implicit_wait](https://github.com/appium/ruby_lib/blob/
|
628
|
+
##### [set_implicit_wait](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L561) common
|
629
629
|
|
630
630
|
> def set_implicit_wait(wait)
|
631
631
|
|
@@ -633,7 +633,7 @@ To ignore error for Espresso Driver
|
|
633
633
|
|
634
634
|
--
|
635
635
|
|
636
|
-
##### [no_wait](https://github.com/appium/ruby_lib/blob/
|
636
|
+
##### [no_wait](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L572) common
|
637
637
|
|
638
638
|
> def no_wait
|
639
639
|
|
@@ -641,7 +641,7 @@ Set implicit wait to zero.
|
|
641
641
|
|
642
642
|
--
|
643
643
|
|
644
|
-
##### [set_wait](https://github.com/appium/ruby_lib/blob/
|
644
|
+
##### [set_wait](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L586) common
|
645
645
|
|
646
646
|
> def set_wait(timeout = nil)
|
647
647
|
|
@@ -657,7 +657,7 @@ __Returns:__
|
|
657
657
|
|
658
658
|
--
|
659
659
|
|
660
|
-
##### [exists](https://github.com/appium/ruby_lib/blob/
|
660
|
+
##### [exists](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L603) common
|
661
661
|
|
662
662
|
> def exists(pre_check = 0, post_check = @core.default_wait)
|
663
663
|
|
@@ -681,7 +681,7 @@ __Returns:__
|
|
681
681
|
|
682
682
|
--
|
683
683
|
|
684
|
-
##### [execute_script](https://github.com/appium/ruby_lib/blob/
|
684
|
+
##### [execute_script](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L627) common
|
685
685
|
|
686
686
|
> def execute_script(script, *args)
|
687
687
|
|
@@ -699,7 +699,7 @@ __Returns:__
|
|
699
699
|
|
700
700
|
--
|
701
701
|
|
702
|
-
##### [execute_async_script](https://github.com/appium/ruby_lib/blob/
|
702
|
+
##### [execute_async_script](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L635) common
|
703
703
|
|
704
704
|
> def execute_async_script(script, *args)
|
705
705
|
|
@@ -709,7 +709,7 @@ Get the window handles of open browser windows
|
|
709
709
|
|
710
710
|
--
|
711
711
|
|
712
|
-
##### [window_handles](https://github.com/appium/ruby_lib/blob/
|
712
|
+
##### [window_handles](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L639) common
|
713
713
|
|
714
714
|
> def window_handles
|
715
715
|
|
@@ -717,7 +717,7 @@ Get the window handles of open browser windows
|
|
717
717
|
|
718
718
|
--
|
719
719
|
|
720
|
-
##### [window_handle](https://github.com/appium/ruby_lib/blob/
|
720
|
+
##### [window_handle](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L644) common
|
721
721
|
|
722
722
|
> def window_handle
|
723
723
|
|
@@ -725,7 +725,7 @@ Get the current window handle
|
|
725
725
|
|
726
726
|
--
|
727
727
|
|
728
|
-
##### [navigate](https://github.com/appium/ruby_lib/blob/
|
728
|
+
##### [navigate](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L648) common
|
729
729
|
|
730
730
|
> def navigate
|
731
731
|
|
@@ -733,7 +733,7 @@ Get the current window handle
|
|
733
733
|
|
734
734
|
--
|
735
735
|
|
736
|
-
##### [manage](https://github.com/appium/ruby_lib/blob/
|
736
|
+
##### [manage](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L652) common
|
737
737
|
|
738
738
|
> def manage
|
739
739
|
|
@@ -741,7 +741,7 @@ Get the current window handle
|
|
741
741
|
|
742
742
|
--
|
743
743
|
|
744
|
-
##### [get](https://github.com/appium/ruby_lib/blob/
|
744
|
+
##### [get](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L656) common
|
745
745
|
|
746
746
|
> def get(url)
|
747
747
|
|
@@ -749,7 +749,7 @@ Get the current window handle
|
|
749
749
|
|
750
750
|
--
|
751
751
|
|
752
|
-
##### [current_url](https://github.com/appium/ruby_lib/blob/
|
752
|
+
##### [current_url](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L660) common
|
753
753
|
|
754
754
|
> def current_url
|
755
755
|
|
@@ -757,7 +757,7 @@ Get the current window handle
|
|
757
757
|
|
758
758
|
--
|
759
759
|
|
760
|
-
##### [title](https://github.com/appium/ruby_lib/blob/
|
760
|
+
##### [title](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L664) common
|
761
761
|
|
762
762
|
> def title
|
763
763
|
|
@@ -765,7 +765,7 @@ Get the current window handle
|
|
765
765
|
|
766
766
|
--
|
767
767
|
|
768
|
-
##### [switch_to](https://github.com/appium/ruby_lib/blob/
|
768
|
+
##### [switch_to](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L670) common
|
769
769
|
|
770
770
|
> def switch_to
|
771
771
|
|
@@ -777,7 +777,7 @@ __Returns:__
|
|
777
777
|
|
778
778
|
--
|
779
779
|
|
780
|
-
##### [find_elements](https://github.com/appium/ruby_lib/blob/
|
780
|
+
##### [find_elements](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L697) common
|
781
781
|
|
782
782
|
> def find_elements(*args)
|
783
783
|
|
@@ -797,7 +797,7 @@ __Returns:__
|
|
797
797
|
|
798
798
|
--
|
799
799
|
|
800
|
-
##### [find_element](https://github.com/appium/ruby_lib/blob/
|
800
|
+
##### [find_element](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L713) common
|
801
801
|
|
802
802
|
> def find_element(*args)
|
803
803
|
|
@@ -815,7 +815,7 @@ __Returns:__
|
|
815
815
|
|
816
816
|
--
|
817
817
|
|
818
|
-
##### [find_element_by_image](https://github.com/appium/ruby_lib/blob/
|
818
|
+
##### [find_element_by_image](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L728) common
|
819
819
|
|
820
820
|
> def find_element_by_image(png_img_path)
|
821
821
|
|
@@ -831,7 +831,7 @@ __Returns:__
|
|
831
831
|
|
832
832
|
--
|
833
833
|
|
834
|
-
##### [find_elements_by_image](https://github.com/appium/ruby_lib/blob/
|
834
|
+
##### [find_elements_by_image](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L743) common
|
835
835
|
|
836
836
|
> def find_elements_by_image(png_img_paths)
|
837
837
|
|
@@ -847,7 +847,7 @@ __Returns:__
|
|
847
847
|
|
848
848
|
--
|
849
849
|
|
850
|
-
##### [set_location](https://github.com/appium/ruby_lib/blob/
|
850
|
+
##### [set_location](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L756) common
|
851
851
|
|
852
852
|
> def set_location(opts = {})
|
853
853
|
|
@@ -863,7 +863,7 @@ __Returns:__
|
|
863
863
|
|
864
864
|
--
|
865
865
|
|
866
|
-
##### [x](https://github.com/appium/ruby_lib/blob/
|
866
|
+
##### [x](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/driver.rb#L766) common
|
867
867
|
|
868
868
|
> def x
|
869
869
|
|
@@ -876,7 +876,7 @@ __Returns:__
|
|
876
876
|
|
877
877
|
--
|
878
878
|
|
879
|
-
##### [username](https://github.com/appium/ruby_lib/blob/
|
879
|
+
##### [username](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/sauce_labs.rb#L18) common
|
880
880
|
|
881
881
|
> def username
|
882
882
|
|
@@ -884,7 +884,7 @@ Username for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_US
|
|
884
884
|
|
885
885
|
--
|
886
886
|
|
887
|
-
##### [access_key](https://github.com/appium/ruby_lib/blob/
|
887
|
+
##### [access_key](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/sauce_labs.rb#L20) common
|
888
888
|
|
889
889
|
> def access_key
|
890
890
|
|
@@ -892,7 +892,7 @@ Access Key for use on Sauce Labs. Set `false` to disable Sauce, even when SAUCE_
|
|
892
892
|
|
893
893
|
--
|
894
894
|
|
895
|
-
##### [endpoint](https://github.com/appium/ruby_lib/blob/
|
895
|
+
##### [endpoint](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/sauce_labs.rb#L22) common
|
896
896
|
|
897
897
|
> def endpoint
|
898
898
|
|
@@ -900,7 +900,7 @@ Override the Sauce Appium endpoint to allow e.g. TestObject tests. Default is 'o
|
|
900
900
|
|
901
901
|
--
|
902
902
|
|
903
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
903
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/sauce_labs.rb#L47) common
|
904
904
|
|
905
905
|
> def initialize(appium_lib_opts)
|
906
906
|
|
@@ -916,7 +916,7 @@ __Returns:__
|
|
916
916
|
|
917
917
|
--
|
918
918
|
|
919
|
-
##### [sauce_server_url?](https://github.com/appium/ruby_lib/blob/
|
919
|
+
##### [sauce_server_url?](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/sauce_labs.rb#L67) common
|
920
920
|
|
921
921
|
> def sauce_server_url?
|
922
922
|
|
@@ -928,7 +928,7 @@ __Returns:__
|
|
928
928
|
|
929
929
|
--
|
930
930
|
|
931
|
-
##### [server_url](https://github.com/appium/ruby_lib/blob/
|
931
|
+
##### [server_url](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/sauce_labs.rb#L80) common
|
932
932
|
|
933
933
|
> def server_url
|
934
934
|
|
@@ -940,7 +940,7 @@ __Returns:__
|
|
940
940
|
|
941
941
|
--
|
942
942
|
|
943
|
-
##### [get_log](https://github.com/appium/ruby_lib/blob/
|
943
|
+
##### [get_log](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/log.rb#L25) common
|
944
944
|
|
945
945
|
> def get_log(type)
|
946
946
|
|
@@ -956,7 +956,7 @@ __Returns:__
|
|
956
956
|
|
957
957
|
--
|
958
958
|
|
959
|
-
##### [get_available_log_types](https://github.com/appium/ruby_lib/blob/
|
959
|
+
##### [get_available_log_types](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/log.rb#L37) common
|
960
960
|
|
961
961
|
> def get_available_log_types
|
962
962
|
|
@@ -968,7 +968,7 @@ __Returns:__
|
|
968
968
|
|
969
969
|
--
|
970
970
|
|
971
|
-
##### [wait_true](https://github.com/appium/ruby_lib/blob/
|
971
|
+
##### [wait_true](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/wait.rb#L44) common
|
972
972
|
|
973
973
|
> def wait_true(opts = {})
|
974
974
|
|
@@ -988,7 +988,7 @@ __Parameters:__
|
|
988
988
|
|
989
989
|
--
|
990
990
|
|
991
|
-
##### [wait](https://github.com/appium/ruby_lib/blob/
|
991
|
+
##### [wait](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/wait.rb#L73) common
|
992
992
|
|
993
993
|
> def wait(opts = {})
|
994
994
|
|
@@ -1006,7 +1006,7 @@ __Parameters:__
|
|
1006
1006
|
|
1007
1007
|
--
|
1008
1008
|
|
1009
|
-
##### [add_touch_actions](https://github.com/appium/ruby_lib/blob/
|
1009
|
+
##### [add_touch_actions](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/device.rb#L26) common
|
1010
1010
|
|
1011
1011
|
> def add_touch_actions
|
1012
1012
|
|
@@ -1014,7 +1014,7 @@ __Parameters:__
|
|
1014
1014
|
|
1015
1015
|
--
|
1016
1016
|
|
1017
|
-
##### [delegate_from_appium_driver](https://github.com/appium/ruby_lib/blob/
|
1017
|
+
##### [delegate_from_appium_driver](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/device.rb#L38) common
|
1018
1018
|
|
1019
1019
|
> def delegate_from_appium_driver(method, delegation_target)
|
1020
1020
|
|
@@ -1022,7 +1022,7 @@ __Parameters:__
|
|
1022
1022
|
|
1023
1023
|
--
|
1024
1024
|
|
1025
|
-
##### [ignore](https://github.com/appium/ruby_lib/blob/
|
1025
|
+
##### [ignore](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L30) common
|
1026
1026
|
|
1027
1027
|
> def ignore
|
1028
1028
|
|
@@ -1030,7 +1030,7 @@ Return yield and ignore any exceptions.
|
|
1030
1030
|
|
1031
1031
|
--
|
1032
1032
|
|
1033
|
-
##### [back](https://github.com/appium/ruby_lib/blob/
|
1033
|
+
##### [back](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L37) common
|
1034
1034
|
|
1035
1035
|
> def back
|
1036
1036
|
|
@@ -1042,7 +1042,7 @@ __Returns:__
|
|
1042
1042
|
|
1043
1043
|
--
|
1044
1044
|
|
1045
|
-
##### [session_id](https://github.com/appium/ruby_lib/blob/
|
1045
|
+
##### [session_id](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L48) common
|
1046
1046
|
|
1047
1047
|
> def session_id
|
1048
1048
|
|
@@ -1054,7 +1054,7 @@ __Returns:__
|
|
1054
1054
|
|
1055
1055
|
--
|
1056
1056
|
|
1057
|
-
##### [xpath](https://github.com/appium/ruby_lib/blob/
|
1057
|
+
##### [xpath](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L56) common
|
1058
1058
|
|
1059
1059
|
> def xpath(xpath_str)
|
1060
1060
|
|
@@ -1070,7 +1070,7 @@ __Returns:__
|
|
1070
1070
|
|
1071
1071
|
--
|
1072
1072
|
|
1073
|
-
##### [xpaths](https://github.com/appium/ruby_lib/blob/
|
1073
|
+
##### [xpaths](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L64) common
|
1074
1074
|
|
1075
1075
|
> def xpaths(xpath_str)
|
1076
1076
|
|
@@ -1086,7 +1086,7 @@ __Returns:__
|
|
1086
1086
|
|
1087
1087
|
--
|
1088
1088
|
|
1089
|
-
##### [result](https://github.com/appium/ruby_lib/blob/
|
1089
|
+
##### [result](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L74) common
|
1090
1090
|
|
1091
1091
|
> def result
|
1092
1092
|
|
@@ -1094,7 +1094,7 @@ Returns the value of attribute result
|
|
1094
1094
|
|
1095
1095
|
--
|
1096
1096
|
|
1097
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
1097
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L76) common
|
1098
1098
|
|
1099
1099
|
> def initialize(platform)
|
1100
1100
|
|
@@ -1106,7 +1106,7 @@ __Returns:__
|
|
1106
1106
|
|
1107
1107
|
--
|
1108
1108
|
|
1109
|
-
##### [reset](https://github.com/appium/ruby_lib/blob/
|
1109
|
+
##### [reset](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L81) common
|
1110
1110
|
|
1111
1111
|
> def reset
|
1112
1112
|
|
@@ -1114,7 +1114,7 @@ __Returns:__
|
|
1114
1114
|
|
1115
1115
|
--
|
1116
1116
|
|
1117
|
-
##### [start_element](https://github.com/appium/ruby_lib/blob/
|
1117
|
+
##### [start_element](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L86) common
|
1118
1118
|
|
1119
1119
|
> def start_element(name, attrs = [])
|
1120
1120
|
|
@@ -1122,7 +1122,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html
|
|
1122
1122
|
|
1123
1123
|
--
|
1124
1124
|
|
1125
|
-
##### [formatted_result](https://github.com/appium/ruby_lib/blob/
|
1125
|
+
##### [formatted_result](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L97) common
|
1126
1126
|
|
1127
1127
|
> def formatted_result
|
1128
1128
|
|
@@ -1130,7 +1130,7 @@ http://nokogiri.org/Nokogiri/XML/SAX/Document.html
|
|
1130
1130
|
|
1131
1131
|
--
|
1132
1132
|
|
1133
|
-
##### [get_page_class](https://github.com/appium/ruby_lib/blob/
|
1133
|
+
##### [get_page_class](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L115) common
|
1134
1134
|
|
1135
1135
|
> def get_page_class
|
1136
1136
|
|
@@ -1142,7 +1142,7 @@ __Returns:__
|
|
1142
1142
|
|
1143
1143
|
--
|
1144
1144
|
|
1145
|
-
##### [page_class](https://github.com/appium/ruby_lib/blob/
|
1145
|
+
##### [page_class](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L140) common
|
1146
1146
|
|
1147
1147
|
> def page_class
|
1148
1148
|
|
@@ -1155,7 +1155,7 @@ __Returns:__
|
|
1155
1155
|
|
1156
1156
|
--
|
1157
1157
|
|
1158
|
-
##### [source](https://github.com/appium/ruby_lib/blob/
|
1158
|
+
##### [source](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L147) common
|
1159
1159
|
|
1160
1160
|
> def source
|
1161
1161
|
|
@@ -1167,7 +1167,7 @@ __Returns:__
|
|
1167
1167
|
|
1168
1168
|
--
|
1169
1169
|
|
1170
|
-
##### [get_source](https://github.com/appium/ruby_lib/blob/
|
1170
|
+
##### [get_source](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L154) common
|
1171
1171
|
|
1172
1172
|
> def get_source
|
1173
1173
|
|
@@ -1180,7 +1180,7 @@ __Returns:__
|
|
1180
1180
|
|
1181
1181
|
--
|
1182
1182
|
|
1183
|
-
##### [px_to_window_rel](https://github.com/appium/ruby_lib/blob/
|
1183
|
+
##### [px_to_window_rel](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L164) common
|
1184
1184
|
|
1185
1185
|
> def px_to_window_rel(opts = {}, driver = $driver)
|
1186
1186
|
|
@@ -1188,7 +1188,7 @@ Converts pixel values to window relative values
|
|
1188
1188
|
|
1189
1189
|
--
|
1190
1190
|
|
1191
|
-
##### [xml_keys](https://github.com/appium/ruby_lib/blob/
|
1191
|
+
##### [xml_keys](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L183) common
|
1192
1192
|
|
1193
1193
|
> def xml_keys(target)
|
1194
1194
|
|
@@ -1204,7 +1204,7 @@ __Returns:__
|
|
1204
1204
|
|
1205
1205
|
--
|
1206
1206
|
|
1207
|
-
##### [xml_values](https://github.com/appium/ruby_lib/blob/
|
1207
|
+
##### [xml_values](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L191) common
|
1208
1208
|
|
1209
1209
|
> def xml_values(target)
|
1210
1210
|
|
@@ -1220,7 +1220,7 @@ __Returns:__
|
|
1220
1220
|
|
1221
1221
|
--
|
1222
1222
|
|
1223
|
-
##### [resolve_id](https://github.com/appium/ruby_lib/blob/
|
1223
|
+
##### [resolve_id](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L199) common
|
1224
1224
|
|
1225
1225
|
> def resolve_id(id)
|
1226
1226
|
|
@@ -1236,7 +1236,7 @@ __Returns:__
|
|
1236
1236
|
|
1237
1237
|
--
|
1238
1238
|
|
1239
|
-
##### [filter](https://github.com/appium/ruby_lib/blob/
|
1239
|
+
##### [filter](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L206) common
|
1240
1240
|
|
1241
1241
|
> def filter
|
1242
1242
|
|
@@ -1244,7 +1244,7 @@ Returns the value of attribute filter
|
|
1244
1244
|
|
1245
1245
|
--
|
1246
1246
|
|
1247
|
-
##### [filter=](https://github.com/appium/ruby_lib/blob/
|
1247
|
+
##### [filter=](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L209) common
|
1248
1248
|
|
1249
1249
|
> def filter=(value)
|
1250
1250
|
|
@@ -1252,7 +1252,7 @@ convert to string to support symbols
|
|
1252
1252
|
|
1253
1253
|
--
|
1254
1254
|
|
1255
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
1255
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L216) common
|
1256
1256
|
|
1257
1257
|
> def initialize
|
1258
1258
|
|
@@ -1264,7 +1264,7 @@ __Returns:__
|
|
1264
1264
|
|
1265
1265
|
--
|
1266
1266
|
|
1267
|
-
##### [reset](https://github.com/appium/ruby_lib/blob/
|
1267
|
+
##### [reset](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L221) common
|
1268
1268
|
|
1269
1269
|
> def reset
|
1270
1270
|
|
@@ -1272,7 +1272,7 @@ __Returns:__
|
|
1272
1272
|
|
1273
1273
|
--
|
1274
1274
|
|
1275
|
-
##### [result](https://github.com/appium/ruby_lib/blob/
|
1275
|
+
##### [result](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L227) common
|
1276
1276
|
|
1277
1277
|
> def result
|
1278
1278
|
|
@@ -1280,7 +1280,7 @@ __Returns:__
|
|
1280
1280
|
|
1281
1281
|
--
|
1282
1282
|
|
1283
|
-
##### [start_element](https://github.com/appium/ruby_lib/blob/
|
1283
|
+
##### [start_element](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L240) common
|
1284
1284
|
|
1285
1285
|
> def start_element(name, attrs = [])
|
1286
1286
|
|
@@ -1288,7 +1288,7 @@ __Returns:__
|
|
1288
1288
|
|
1289
1289
|
--
|
1290
1290
|
|
1291
|
-
##### [end_element](https://github.com/appium/ruby_lib/blob/
|
1291
|
+
##### [end_element](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L250) common
|
1292
1292
|
|
1293
1293
|
> def end_element(name)
|
1294
1294
|
|
@@ -1296,7 +1296,7 @@ __Returns:__
|
|
1296
1296
|
|
1297
1297
|
--
|
1298
1298
|
|
1299
|
-
##### [characters](https://github.com/appium/ruby_lib/blob/
|
1299
|
+
##### [characters](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/helper.rb#L257) common
|
1300
1300
|
|
1301
1301
|
> def characters(chars)
|
1302
1302
|
|
@@ -1304,7 +1304,7 @@ __Returns:__
|
|
1304
1304
|
|
1305
1305
|
--
|
1306
1306
|
|
1307
|
-
##### [DEFAULT_HEADERS](https://github.com/appium/ruby_lib/blob/
|
1307
|
+
##### [DEFAULT_HEADERS](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/http_client.rb#L22) common
|
1308
1308
|
|
1309
1309
|
> DEFAULT_HEADERS = { 'Accept' => CONTENT_TYPE, 'User-Agent' => "appium/ruby_lib/#{::Appium::VERSION}" }.freeze
|
1310
1310
|
|
@@ -1312,7 +1312,7 @@ Default HTTP client inherit Appium::Core::Base::Http::Default, but has different
|
|
1312
1312
|
|
1313
1313
|
--
|
1314
1314
|
|
1315
|
-
##### [pinch](https://github.com/appium/ruby_lib/blob/
|
1315
|
+
##### [pinch](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/multi_touch.rb#L65) common
|
1316
1316
|
|
1317
1317
|
> def pinch(percentage = 25, auto_perform = true, driver = $driver)
|
1318
1318
|
|
@@ -1332,7 +1332,7 @@ __Parameters:__
|
|
1332
1332
|
|
1333
1333
|
--
|
1334
1334
|
|
1335
|
-
##### [zoom](https://github.com/appium/ruby_lib/blob/
|
1335
|
+
##### [zoom](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/multi_touch.rb#L108) common
|
1336
1336
|
|
1337
1337
|
> def zoom(percentage = 200, auto_perform = true, driver = $driver)
|
1338
1338
|
|
@@ -1352,7 +1352,7 @@ __Parameters:__
|
|
1352
1352
|
|
1353
1353
|
--
|
1354
1354
|
|
1355
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
1355
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/multi_touch.rb#L194) common
|
1356
1356
|
|
1357
1357
|
> def initialize(driver = $driver)
|
1358
1358
|
|
@@ -1364,7 +1364,7 @@ __Returns:__
|
|
1364
1364
|
|
1365
1365
|
--
|
1366
1366
|
|
1367
|
-
##### [COMPLEX_ACTIONS](https://github.com/appium/ruby_lib/blob/
|
1367
|
+
##### [COMPLEX_ACTIONS](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/touch_actions.rb#L47) common
|
1368
1368
|
|
1369
1369
|
> COMPLEX_ACTIONS = ::Appium::Core::TouchAction::COMPLEX_ACTIONS
|
1370
1370
|
|
@@ -1372,7 +1372,7 @@ __Returns:__
|
|
1372
1372
|
|
1373
1373
|
--
|
1374
1374
|
|
1375
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
1375
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/touch_actions.rb#L62) common
|
1376
1376
|
|
1377
1377
|
> def initialize(driver = $driver)
|
1378
1378
|
|
@@ -1384,7 +1384,7 @@ __Returns:__
|
|
1384
1384
|
|
1385
1385
|
--
|
1386
1386
|
|
1387
|
-
##### [swipe](https://github.com/appium/ruby_lib/blob/
|
1387
|
+
##### [swipe](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/touch_actions.rb#L66) common
|
1388
1388
|
|
1389
1389
|
> def swipe(opts)
|
1390
1390
|
|
@@ -1392,7 +1392,7 @@ __Returns:__
|
|
1392
1392
|
|
1393
1393
|
--
|
1394
1394
|
|
1395
|
-
##### [initialize](https://github.com/appium/ruby_lib/blob/
|
1395
|
+
##### [initialize](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/command/ws_logcat.rb#L19) common
|
1396
1396
|
|
1397
1397
|
> def initialize(url:, output_file: 'logcat.log')
|
1398
1398
|
|
@@ -1404,7 +1404,7 @@ __Returns:__
|
|
1404
1404
|
|
1405
1405
|
--
|
1406
1406
|
|
1407
|
-
##### [handle_message_data](https://github.com/appium/ruby_lib/blob/
|
1407
|
+
##### [handle_message_data](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/common/command/ws_logcat.rb#L24) common
|
1408
1408
|
|
1409
1409
|
> def handle_message_data(data)
|
1410
1410
|
|
@@ -1412,7 +1412,7 @@ __Returns:__
|
|
1412
1412
|
|
1413
1413
|
--
|
1414
1414
|
|
1415
|
-
##### [for](https://github.com/appium/ruby_lib/blob/
|
1415
|
+
##### [for](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/ios.rb#L29) ios
|
1416
1416
|
|
1417
1417
|
> def self.for(target)
|
1418
1418
|
|
@@ -1420,23 +1420,39 @@ __Returns:__
|
|
1420
1420
|
|
1421
1421
|
--
|
1422
1422
|
|
1423
|
-
##### [
|
1423
|
+
##### [UIA_STATIC_TEXT](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/text.rb#L18) ios
|
1424
1424
|
|
1425
|
-
>
|
1425
|
+
> UIA_STATIC_TEXT = 'UIAStaticText'
|
1426
1426
|
|
1427
1427
|
|
1428
1428
|
|
1429
1429
|
--
|
1430
1430
|
|
1431
|
-
##### [
|
1431
|
+
##### [UIAStaticText](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/text.rb#L19) ios
|
1432
1432
|
|
1433
|
-
>
|
1433
|
+
> UIAStaticText = UIA_STATIC_TEXT
|
1434
1434
|
|
1435
1435
|
|
1436
1436
|
|
1437
1437
|
--
|
1438
1438
|
|
1439
|
-
##### [
|
1439
|
+
##### [XCUIELEMENT_TYPE_STATIC_TEXT](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/text.rb#L21) ios
|
1440
|
+
|
1441
|
+
> XCUIELEMENT_TYPE_STATIC_TEXT = 'XCUIElementTypeStaticText'
|
1442
|
+
|
1443
|
+
|
1444
|
+
|
1445
|
+
--
|
1446
|
+
|
1447
|
+
##### [XCUIElementTypeStaticText](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/text.rb#L22) ios
|
1448
|
+
|
1449
|
+
> XCUIElementTypeStaticText = XCUIELEMENT_TYPE_STATIC_TEXT
|
1450
|
+
|
1451
|
+
|
1452
|
+
|
1453
|
+
--
|
1454
|
+
|
1455
|
+
##### [static_text_class](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/text.rb#L25) ios
|
1440
1456
|
|
1441
1457
|
> def static_text_class
|
1442
1458
|
|
@@ -1448,7 +1464,7 @@ __Returns:__
|
|
1448
1464
|
|
1449
1465
|
--
|
1450
1466
|
|
1451
|
-
##### [text](https://github.com/appium/ruby_lib/blob/
|
1467
|
+
##### [text](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/text.rb#L33) ios
|
1452
1468
|
|
1453
1469
|
> def text(value)
|
1454
1470
|
|
@@ -1461,11 +1477,11 @@ __Parameters:__
|
|
1461
1477
|
|
1462
1478
|
__Returns:__
|
1463
1479
|
|
1464
|
-
[
|
1480
|
+
[UIA_STATIC_TEXT|XCUIELEMENT_TYPE_STATIC_TEXT]
|
1465
1481
|
|
1466
1482
|
--
|
1467
1483
|
|
1468
|
-
##### [texts](https://github.com/appium/ruby_lib/blob/
|
1484
|
+
##### [texts](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/text.rb#L43) ios
|
1469
1485
|
|
1470
1486
|
> def texts(value = false)
|
1471
1487
|
|
@@ -1478,11 +1494,11 @@ __Parameters:__
|
|
1478
1494
|
|
1479
1495
|
__Returns:__
|
1480
1496
|
|
1481
|
-
[Array<
|
1497
|
+
[Array<UIA_STATIC_TEXT|XCUIELEMENT_TYPE_STATIC_TEXT>]
|
1482
1498
|
|
1483
1499
|
--
|
1484
1500
|
|
1485
|
-
##### [first_text](https://github.com/appium/ruby_lib/blob/
|
1501
|
+
##### [first_text](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/text.rb#L51) ios
|
1486
1502
|
|
1487
1503
|
> def first_text
|
1488
1504
|
|
@@ -1490,11 +1506,11 @@ Find the first UIAStaticText|XCUIElementTypeStaticText.
|
|
1490
1506
|
|
1491
1507
|
__Returns:__
|
1492
1508
|
|
1493
|
-
[
|
1509
|
+
[UIA_STATIC_TEXT|XCUIELEMENT_TYPE_STATIC_TEXT]
|
1494
1510
|
|
1495
1511
|
--
|
1496
1512
|
|
1497
|
-
##### [last_text](https://github.com/appium/ruby_lib/blob/
|
1513
|
+
##### [last_text](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/text.rb#L57) ios
|
1498
1514
|
|
1499
1515
|
> def last_text
|
1500
1516
|
|
@@ -1502,11 +1518,11 @@ Find the last UIAStaticText|XCUIElementTypeStaticText.
|
|
1502
1518
|
|
1503
1519
|
__Returns:__
|
1504
1520
|
|
1505
|
-
[
|
1521
|
+
[UIA_STATIC_TEXT|XCUIELEMENT_TYPE_STATIC_TEXT]
|
1506
1522
|
|
1507
1523
|
--
|
1508
1524
|
|
1509
|
-
##### [text_exact](https://github.com/appium/ruby_lib/blob/
|
1525
|
+
##### [text_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/text.rb#L64) ios
|
1510
1526
|
|
1511
1527
|
> def text_exact(value)
|
1512
1528
|
|
@@ -1518,11 +1534,11 @@ __Parameters:__
|
|
1518
1534
|
|
1519
1535
|
__Returns:__
|
1520
1536
|
|
1521
|
-
[
|
1537
|
+
[UIA_STATIC_TEXT|XCUIElementTypeStaticText]
|
1522
1538
|
|
1523
1539
|
--
|
1524
1540
|
|
1525
|
-
##### [texts_exact](https://github.com/appium/ruby_lib/blob/
|
1541
|
+
##### [texts_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/text.rb#L71) ios
|
1526
1542
|
|
1527
1543
|
> def texts_exact(value)
|
1528
1544
|
|
@@ -1534,11 +1550,11 @@ __Parameters:__
|
|
1534
1550
|
|
1535
1551
|
__Returns:__
|
1536
1552
|
|
1537
|
-
[Array<
|
1553
|
+
[Array<UIA_STATIC_TEXT|XCUIElementTypeStaticText>]
|
1538
1554
|
|
1539
1555
|
--
|
1540
1556
|
|
1541
|
-
##### [filter](https://github.com/appium/ruby_lib/blob/
|
1557
|
+
##### [filter](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L19) ios
|
1542
1558
|
|
1543
1559
|
> def filter
|
1544
1560
|
|
@@ -1546,7 +1562,7 @@ Returns the value of attribute filter
|
|
1546
1562
|
|
1547
1563
|
--
|
1548
1564
|
|
1549
|
-
##### [filter=](https://github.com/appium/ruby_lib/blob/
|
1565
|
+
##### [filter=](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L19) ios
|
1550
1566
|
|
1551
1567
|
> def filter=(value)
|
1552
1568
|
|
@@ -1558,7 +1574,7 @@ __Parameters:__
|
|
1558
1574
|
|
1559
1575
|
--
|
1560
1576
|
|
1561
|
-
##### [start_element](https://github.com/appium/ruby_lib/blob/
|
1577
|
+
##### [start_element](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L21) ios
|
1562
1578
|
|
1563
1579
|
> def start_element(type, attrs = [])
|
1564
1580
|
|
@@ -1566,7 +1582,7 @@ __Parameters:__
|
|
1566
1582
|
|
1567
1583
|
--
|
1568
1584
|
|
1569
|
-
##### [ios_password](https://github.com/appium/ruby_lib/blob/
|
1585
|
+
##### [ios_password](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L57) ios
|
1570
1586
|
|
1571
1587
|
> def ios_password(length = 1)
|
1572
1588
|
|
@@ -1584,7 +1600,7 @@ __Returns:__
|
|
1584
1600
|
|
1585
1601
|
--
|
1586
1602
|
|
1587
|
-
##### [page](https://github.com/appium/ruby_lib/blob/
|
1603
|
+
##### [page](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L73) ios
|
1588
1604
|
|
1589
1605
|
> def page(opts = {})
|
1590
1606
|
|
@@ -1602,7 +1618,7 @@ __Returns:__
|
|
1602
1618
|
|
1603
1619
|
--
|
1604
1620
|
|
1605
|
-
##### [id](https://github.com/appium/ruby_lib/blob/
|
1621
|
+
##### [id](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L100) ios
|
1606
1622
|
|
1607
1623
|
> def id(id)
|
1608
1624
|
|
@@ -1618,7 +1634,7 @@ __Returns:__
|
|
1618
1634
|
|
1619
1635
|
--
|
1620
1636
|
|
1621
|
-
##### [ele_index](https://github.com/appium/ruby_lib/blob/
|
1637
|
+
##### [ele_index](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L108) ios
|
1622
1638
|
|
1623
1639
|
> def ele_index(class_name, index)
|
1624
1640
|
|
@@ -1636,7 +1652,7 @@ __Returns:__
|
|
1636
1652
|
|
1637
1653
|
--
|
1638
1654
|
|
1639
|
-
##### [find_ele_by_attr](https://github.com/appium/ruby_lib/blob/
|
1655
|
+
##### [find_ele_by_attr](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L138) ios
|
1640
1656
|
|
1641
1657
|
> def find_ele_by_attr(class_name, attr, value)
|
1642
1658
|
|
@@ -1658,7 +1674,7 @@ __Returns:__
|
|
1658
1674
|
|
1659
1675
|
--
|
1660
1676
|
|
1661
|
-
##### [find_eles_by_attr](https://github.com/appium/ruby_lib/blob/
|
1677
|
+
##### [find_eles_by_attr](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L149) ios
|
1662
1678
|
|
1663
1679
|
> def find_eles_by_attr(class_name, attr, value)
|
1664
1680
|
|
@@ -1680,7 +1696,7 @@ __Returns:__
|
|
1680
1696
|
|
1681
1697
|
--
|
1682
1698
|
|
1683
|
-
##### [find_ele_by_predicate](https://github.com/appium/ruby_lib/blob/
|
1699
|
+
##### [find_ele_by_predicate](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L162) ios
|
1684
1700
|
|
1685
1701
|
> def find_ele_by_predicate(class_name: '*', value:)
|
1686
1702
|
|
@@ -1697,7 +1713,7 @@ __Returns:__
|
|
1697
1713
|
|
1698
1714
|
--
|
1699
1715
|
|
1700
|
-
##### [find_eles_by_predicate](https://github.com/appium/ruby_lib/blob/
|
1716
|
+
##### [find_eles_by_predicate](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L174) ios
|
1701
1717
|
|
1702
1718
|
> def find_eles_by_predicate(class_name: '*', value:)
|
1703
1719
|
|
@@ -1716,7 +1732,7 @@ __Returns:__
|
|
1716
1732
|
|
1717
1733
|
--
|
1718
1734
|
|
1719
|
-
##### [find_ele_by_attr_include](https://github.com/appium/ruby_lib/blob/
|
1735
|
+
##### [find_ele_by_attr_include](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L190) ios
|
1720
1736
|
|
1721
1737
|
> def find_ele_by_attr_include(class_name, attr, value)
|
1722
1738
|
|
@@ -1737,7 +1753,7 @@ __Returns:__
|
|
1737
1753
|
|
1738
1754
|
--
|
1739
1755
|
|
1740
|
-
##### [find_eles_by_attr_include](https://github.com/appium/ruby_lib/blob/
|
1756
|
+
##### [find_eles_by_attr_include](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L200) ios
|
1741
1757
|
|
1742
1758
|
> def find_eles_by_attr_include(class_name, attr, value)
|
1743
1759
|
|
@@ -1758,7 +1774,7 @@ __Returns:__
|
|
1758
1774
|
|
1759
1775
|
--
|
1760
1776
|
|
1761
|
-
##### [find_ele_by_predicate_include](https://github.com/appium/ruby_lib/blob/
|
1777
|
+
##### [find_ele_by_predicate_include](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L208) ios
|
1762
1778
|
|
1763
1779
|
> def find_ele_by_predicate_include(class_name: '*', value:)
|
1764
1780
|
|
@@ -1775,7 +1791,7 @@ __Returns:__
|
|
1775
1791
|
|
1776
1792
|
--
|
1777
1793
|
|
1778
|
-
##### [find_eles_by_predicate_include](https://github.com/appium/ruby_lib/blob/
|
1794
|
+
##### [find_eles_by_predicate_include](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L220) ios
|
1779
1795
|
|
1780
1796
|
> def find_eles_by_predicate_include(class_name: '*', value:)
|
1781
1797
|
|
@@ -1794,7 +1810,7 @@ __Returns:__
|
|
1794
1810
|
|
1795
1811
|
--
|
1796
1812
|
|
1797
|
-
##### [first_ele](https://github.com/appium/ruby_lib/blob/
|
1813
|
+
##### [first_ele](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L233) ios
|
1798
1814
|
|
1799
1815
|
> def first_ele(class_name)
|
1800
1816
|
|
@@ -1810,7 +1826,7 @@ __Returns:__
|
|
1810
1826
|
|
1811
1827
|
--
|
1812
1828
|
|
1813
|
-
##### [last_ele](https://github.com/appium/ruby_lib/blob/
|
1829
|
+
##### [last_ele](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L240) ios
|
1814
1830
|
|
1815
1831
|
> def last_ele(class_name)
|
1816
1832
|
|
@@ -1826,7 +1842,7 @@ __Returns:__
|
|
1826
1842
|
|
1827
1843
|
--
|
1828
1844
|
|
1829
|
-
##### [tag](https://github.com/appium/ruby_lib/blob/
|
1845
|
+
##### [tag](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L248) ios
|
1830
1846
|
|
1831
1847
|
> def tag(class_name)
|
1832
1848
|
|
@@ -1842,7 +1858,7 @@ __Returns:__
|
|
1842
1858
|
|
1843
1859
|
--
|
1844
1860
|
|
1845
|
-
##### [tags](https://github.com/appium/ruby_lib/blob/
|
1861
|
+
##### [tags](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L256) ios
|
1846
1862
|
|
1847
1863
|
> def tags(class_name)
|
1848
1864
|
|
@@ -1858,7 +1874,7 @@ __Returns:__
|
|
1858
1874
|
|
1859
1875
|
--
|
1860
1876
|
|
1861
|
-
##### [tags_include](https://github.com/appium/ruby_lib/blob/
|
1877
|
+
##### [tags_include](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L267) ios
|
1862
1878
|
|
1863
1879
|
> def tags_include(class_names:, value: nil)
|
1864
1880
|
|
@@ -1878,7 +1894,7 @@ __Returns:__
|
|
1878
1894
|
|
1879
1895
|
--
|
1880
1896
|
|
1881
|
-
##### [tags_exact](https://github.com/appium/ruby_lib/blob/
|
1897
|
+
##### [tags_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L282) ios
|
1882
1898
|
|
1883
1899
|
> def tags_exact(class_names:, value: nil)
|
1884
1900
|
|
@@ -1898,7 +1914,7 @@ __Returns:__
|
|
1898
1914
|
|
1899
1915
|
--
|
1900
1916
|
|
1901
|
-
##### [ele_by_json_visible_contains](https://github.com/appium/ruby_lib/blob/
|
1917
|
+
##### [ele_by_json_visible_contains](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L319) ios
|
1902
1918
|
|
1903
1919
|
> def ele_by_json_visible_contains(element, value)
|
1904
1920
|
|
@@ -1917,7 +1933,7 @@ __Returns:__
|
|
1917
1933
|
|
1918
1934
|
--
|
1919
1935
|
|
1920
|
-
##### [eles_by_json_visible_contains](https://github.com/appium/ruby_lib/blob/
|
1936
|
+
##### [eles_by_json_visible_contains](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L328) ios
|
1921
1937
|
|
1922
1938
|
> def eles_by_json_visible_contains(element, value)
|
1923
1939
|
|
@@ -1936,7 +1952,7 @@ __Returns:__
|
|
1936
1952
|
|
1937
1953
|
--
|
1938
1954
|
|
1939
|
-
##### [ele_by_json_visible_exact](https://github.com/appium/ruby_lib/blob/
|
1955
|
+
##### [ele_by_json_visible_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L358) ios
|
1940
1956
|
|
1941
1957
|
> def ele_by_json_visible_exact(element, value)
|
1942
1958
|
|
@@ -1955,7 +1971,7 @@ __Returns:__
|
|
1955
1971
|
|
1956
1972
|
--
|
1957
1973
|
|
1958
|
-
##### [eles_by_json_visible_exact](https://github.com/appium/ruby_lib/blob/
|
1974
|
+
##### [eles_by_json_visible_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L367) ios
|
1959
1975
|
|
1960
1976
|
> def eles_by_json_visible_exact(element, value)
|
1961
1977
|
|
@@ -1974,7 +1990,7 @@ __Returns:__
|
|
1974
1990
|
|
1975
1991
|
--
|
1976
1992
|
|
1977
|
-
##### [_all_pred](https://github.com/appium/ruby_lib/blob/
|
1993
|
+
##### [_all_pred](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L376) ios
|
1978
1994
|
|
1979
1995
|
> def _all_pred(opts)
|
1980
1996
|
|
@@ -1984,7 +2000,7 @@ visible - if true, only visible elements are returned. default true
|
|
1984
2000
|
|
1985
2001
|
--
|
1986
2002
|
|
1987
|
-
##### [ele_with_pred](https://github.com/appium/ruby_lib/blob/
|
2003
|
+
##### [ele_with_pred](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L390) ios
|
1988
2004
|
|
1989
2005
|
> def ele_with_pred(opts)
|
1990
2006
|
|
@@ -2000,7 +2016,7 @@ __Returns:__
|
|
2000
2016
|
|
2001
2017
|
--
|
2002
2018
|
|
2003
|
-
##### [eles_with_pred](https://github.com/appium/ruby_lib/blob/
|
2019
|
+
##### [eles_with_pred](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L401) ios
|
2004
2020
|
|
2005
2021
|
> def eles_with_pred(opts)
|
2006
2022
|
|
@@ -2016,7 +2032,7 @@ __Returns:__
|
|
2016
2032
|
|
2017
2033
|
--
|
2018
2034
|
|
2019
|
-
##### [_validate_object](https://github.com/appium/ruby_lib/blob/
|
2035
|
+
##### [_validate_object](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L405) ios
|
2020
2036
|
|
2021
2037
|
> def _validate_object(*objects)
|
2022
2038
|
|
@@ -2024,7 +2040,7 @@ __Returns:__
|
|
2024
2040
|
|
2025
2041
|
--
|
2026
2042
|
|
2027
|
-
##### [_by_json](https://github.com/appium/ruby_lib/blob/
|
2043
|
+
##### [_by_json](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L455) ios
|
2028
2044
|
|
2029
2045
|
> def _by_json(opts)
|
2030
2046
|
|
@@ -2059,7 +2075,7 @@ opts = {
|
|
2059
2075
|
|
2060
2076
|
--
|
2061
2077
|
|
2062
|
-
##### [eles_by_json](https://github.com/appium/ruby_lib/blob/
|
2078
|
+
##### [eles_by_json](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L505) ios
|
2063
2079
|
|
2064
2080
|
> def eles_by_json(opts)
|
2065
2081
|
|
@@ -2078,7 +2094,7 @@ eles_by_json({
|
|
2078
2094
|
|
2079
2095
|
--
|
2080
2096
|
|
2081
|
-
##### [ele_by_json](https://github.com/appium/ruby_lib/blob/
|
2097
|
+
##### [ele_by_json](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/common/helper.rb#L511) ios
|
2082
2098
|
|
2083
2099
|
> def ele_by_json(opts)
|
2084
2100
|
|
@@ -2086,7 +2102,7 @@ see eles_by_json
|
|
2086
2102
|
|
2087
2103
|
--
|
2088
2104
|
|
2089
|
-
##### [alert_accept](https://github.com/appium/ruby_lib/blob/
|
2105
|
+
##### [alert_accept](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/alert.rb#L19) ios
|
2090
2106
|
|
2091
2107
|
> def alert_accept
|
2092
2108
|
|
@@ -2098,7 +2114,7 @@ __Returns:__
|
|
2098
2114
|
|
2099
2115
|
--
|
2100
2116
|
|
2101
|
-
##### [alert_dismiss](https://github.com/appium/ruby_lib/blob/
|
2117
|
+
##### [alert_dismiss](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/alert.rb#L27) ios
|
2102
2118
|
|
2103
2119
|
> def alert_dismiss
|
2104
2120
|
|
@@ -2110,23 +2126,39 @@ __Returns:__
|
|
2110
2126
|
|
2111
2127
|
--
|
2112
2128
|
|
2113
|
-
##### [
|
2129
|
+
##### [UIA_BUTTON](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/button.rb#L18) ios
|
2130
|
+
|
2131
|
+
> UIA_BUTTON = 'UIAButton'
|
2132
|
+
|
2133
|
+
|
2134
|
+
|
2135
|
+
--
|
2136
|
+
|
2137
|
+
##### [UIAButton](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/button.rb#L19) ios
|
2138
|
+
|
2139
|
+
> UIAButton = UIA_BUTTON
|
2140
|
+
|
2141
|
+
|
2142
|
+
|
2143
|
+
--
|
2144
|
+
|
2145
|
+
##### [XCUIELEMENT_TYPE_BUTTON](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/button.rb#L21) ios
|
2114
2146
|
|
2115
|
-
>
|
2147
|
+
> XCUIELEMENT_TYPE_BUTTON = 'XCUIElementTypeButton'
|
2116
2148
|
|
2117
2149
|
|
2118
2150
|
|
2119
2151
|
--
|
2120
2152
|
|
2121
|
-
##### [XCUIElementTypeButton](https://github.com/appium/ruby_lib/blob/
|
2153
|
+
##### [XCUIElementTypeButton](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/button.rb#L22) ios
|
2122
2154
|
|
2123
|
-
> XCUIElementTypeButton =
|
2155
|
+
> XCUIElementTypeButton = XCUIELEMENT_TYPE_BUTTON
|
2124
2156
|
|
2125
2157
|
|
2126
2158
|
|
2127
2159
|
--
|
2128
2160
|
|
2129
|
-
##### [button_class](https://github.com/appium/ruby_lib/blob/
|
2161
|
+
##### [button_class](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/button.rb#L25) ios
|
2130
2162
|
|
2131
2163
|
> def button_class
|
2132
2164
|
|
@@ -2138,7 +2170,7 @@ __Returns:__
|
|
2138
2170
|
|
2139
2171
|
--
|
2140
2172
|
|
2141
|
-
##### [button](https://github.com/appium/ruby_lib/blob/
|
2173
|
+
##### [button](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/button.rb#L33) ios
|
2142
2174
|
|
2143
2175
|
> def button(value)
|
2144
2176
|
|
@@ -2151,11 +2183,11 @@ __Parameters:__
|
|
2151
2183
|
|
2152
2184
|
__Returns:__
|
2153
2185
|
|
2154
|
-
[
|
2186
|
+
[UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON]
|
2155
2187
|
|
2156
2188
|
--
|
2157
2189
|
|
2158
|
-
##### [buttons](https://github.com/appium/ruby_lib/blob/
|
2190
|
+
##### [buttons](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/button.rb#L44) ios
|
2159
2191
|
|
2160
2192
|
> def buttons(value = false)
|
2161
2193
|
|
@@ -2168,11 +2200,11 @@ __Parameters:__
|
|
2168
2200
|
|
2169
2201
|
__Returns:__
|
2170
2202
|
|
2171
|
-
[Array<
|
2203
|
+
[Array<UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON>]
|
2172
2204
|
|
2173
2205
|
--
|
2174
2206
|
|
2175
|
-
##### [first_button](https://github.com/appium/ruby_lib/blob/
|
2207
|
+
##### [first_button](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/button.rb#L52) ios
|
2176
2208
|
|
2177
2209
|
> def first_button
|
2178
2210
|
|
@@ -2180,11 +2212,11 @@ Find the first UIAButton|XCUIElementTypeButton.
|
|
2180
2212
|
|
2181
2213
|
__Returns:__
|
2182
2214
|
|
2183
|
-
[
|
2215
|
+
[UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON]
|
2184
2216
|
|
2185
2217
|
--
|
2186
2218
|
|
2187
|
-
##### [last_button](https://github.com/appium/ruby_lib/blob/
|
2219
|
+
##### [last_button](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/button.rb#L60) ios
|
2188
2220
|
|
2189
2221
|
> def last_button
|
2190
2222
|
|
@@ -2194,11 +2226,11 @@ Find the last UIAButton|XCUIElementTypeButton.
|
|
2194
2226
|
|
2195
2227
|
__Returns:__
|
2196
2228
|
|
2197
|
-
[
|
2229
|
+
[UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON]
|
2198
2230
|
|
2199
2231
|
--
|
2200
2232
|
|
2201
|
-
##### [button_exact](https://github.com/appium/ruby_lib/blob/
|
2233
|
+
##### [button_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/button.rb#L67) ios
|
2202
2234
|
|
2203
2235
|
> def button_exact(value)
|
2204
2236
|
|
@@ -2210,11 +2242,11 @@ __Parameters:__
|
|
2210
2242
|
|
2211
2243
|
__Returns:__
|
2212
2244
|
|
2213
|
-
[
|
2245
|
+
[UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON]
|
2214
2246
|
|
2215
2247
|
--
|
2216
2248
|
|
2217
|
-
##### [buttons_exact](https://github.com/appium/ruby_lib/blob/
|
2249
|
+
##### [buttons_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/button.rb#L74) ios
|
2218
2250
|
|
2219
2251
|
> def buttons_exact(value)
|
2220
2252
|
|
@@ -2226,11 +2258,11 @@ __Parameters:__
|
|
2226
2258
|
|
2227
2259
|
__Returns:__
|
2228
2260
|
|
2229
|
-
[Array<
|
2261
|
+
[Array<UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON>]
|
2230
2262
|
|
2231
2263
|
--
|
2232
2264
|
|
2233
|
-
##### [find](https://github.com/appium/ruby_lib/blob/
|
2265
|
+
##### [find](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/generic.rb#L20) ios
|
2234
2266
|
|
2235
2267
|
> def find(value)
|
2236
2268
|
|
@@ -2246,7 +2278,7 @@ __Returns:__
|
|
2246
2278
|
|
2247
2279
|
--
|
2248
2280
|
|
2249
|
-
##### [finds](https://github.com/appium/ruby_lib/blob/
|
2281
|
+
##### [finds](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/generic.rb#L27) ios
|
2250
2282
|
|
2251
2283
|
> def finds(value)
|
2252
2284
|
|
@@ -2262,7 +2294,7 @@ __Returns:__
|
|
2262
2294
|
|
2263
2295
|
--
|
2264
2296
|
|
2265
|
-
##### [find_exact](https://github.com/appium/ruby_lib/blob/
|
2297
|
+
##### [find_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/generic.rb#L34) ios
|
2266
2298
|
|
2267
2299
|
> def find_exact(value)
|
2268
2300
|
|
@@ -2278,7 +2310,7 @@ __Returns:__
|
|
2278
2310
|
|
2279
2311
|
--
|
2280
2312
|
|
2281
|
-
##### [finds_exact](https://github.com/appium/ruby_lib/blob/
|
2313
|
+
##### [finds_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/generic.rb#L41) ios
|
2282
2314
|
|
2283
2315
|
> def finds_exact(value)
|
2284
2316
|
|
@@ -2294,7 +2326,7 @@ __Returns:__
|
|
2294
2326
|
|
2295
2327
|
--
|
2296
2328
|
|
2297
|
-
##### [raise_error_if_no_element](https://github.com/appium/ruby_lib/blob/
|
2329
|
+
##### [raise_error_if_no_element](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/generic.rb#L47) ios
|
2298
2330
|
|
2299
2331
|
> def raise_error_if_no_element(element)
|
2300
2332
|
|
@@ -2302,7 +2334,7 @@ __Returns:__
|
|
2302
2334
|
|
2303
2335
|
--
|
2304
2336
|
|
2305
|
-
##### [select_visible_elements](https://github.com/appium/ruby_lib/blob/
|
2337
|
+
##### [select_visible_elements](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/generic.rb#L55) ios
|
2306
2338
|
|
2307
2339
|
> def select_visible_elements(elements)
|
2308
2340
|
|
@@ -2310,7 +2342,7 @@ Return visible elements.
|
|
2310
2342
|
|
2311
2343
|
--
|
2312
2344
|
|
2313
|
-
##### [for](https://github.com/appium/ruby_lib/blob/
|
2345
|
+
##### [for](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/bridge.rb#L21) ios
|
2314
2346
|
|
2315
2347
|
> def self.for(target)
|
2316
2348
|
|
@@ -2318,7 +2350,7 @@ Return visible elements.
|
|
2318
2350
|
|
2319
2351
|
--
|
2320
2352
|
|
2321
|
-
##### [last_ele](https://github.com/appium/ruby_lib/blob/
|
2353
|
+
##### [last_ele](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/helper.rb#L40) ios
|
2322
2354
|
|
2323
2355
|
> def last_ele(class_name)
|
2324
2356
|
|
@@ -2334,7 +2366,7 @@ __Returns:__
|
|
2334
2366
|
|
2335
2367
|
--
|
2336
2368
|
|
2337
|
-
##### [tag](https://github.com/appium/ruby_lib/blob/
|
2369
|
+
##### [tag](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/helper.rb#L51) ios
|
2338
2370
|
|
2339
2371
|
> def tag(class_name)
|
2340
2372
|
|
@@ -2350,7 +2382,7 @@ __Returns:__
|
|
2350
2382
|
|
2351
2383
|
--
|
2352
2384
|
|
2353
|
-
##### [tags](https://github.com/appium/ruby_lib/blob/
|
2385
|
+
##### [tags](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/helper.rb#L59) ios
|
2354
2386
|
|
2355
2387
|
> def tags(class_name)
|
2356
2388
|
|
@@ -2366,7 +2398,7 @@ __Returns:__
|
|
2366
2398
|
|
2367
2399
|
--
|
2368
2400
|
|
2369
|
-
##### [tags_include](https://github.com/appium/ruby_lib/blob/
|
2401
|
+
##### [tags_include](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/helper.rb#L71) ios
|
2370
2402
|
|
2371
2403
|
> def tags_include(class_names:, value: nil)
|
2372
2404
|
|
@@ -2386,7 +2418,7 @@ __Returns:__
|
|
2386
2418
|
|
2387
2419
|
--
|
2388
2420
|
|
2389
|
-
##### [tags_exact](https://github.com/appium/ruby_lib/blob/
|
2421
|
+
##### [tags_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/helper.rb#L93) ios
|
2390
2422
|
|
2391
2423
|
> def tags_exact(class_names:, value: nil)
|
2392
2424
|
|
@@ -2406,7 +2438,7 @@ __Returns:__
|
|
2406
2438
|
|
2407
2439
|
--
|
2408
2440
|
|
2409
|
-
##### [start_logs_broadcast](https://github.com/appium/ruby_lib/blob/
|
2441
|
+
##### [start_logs_broadcast](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command.rb#L33) ios
|
2410
2442
|
|
2411
2443
|
> def start_logs_broadcast(syslog_file = 'syslog.log')
|
2412
2444
|
|
@@ -2418,7 +2450,7 @@ __Parameters:__
|
|
2418
2450
|
|
2419
2451
|
--
|
2420
2452
|
|
2421
|
-
##### [stop_logs_broadcast](https://github.com/appium/ruby_lib/blob/
|
2453
|
+
##### [stop_logs_broadcast](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command.rb#L46) ios
|
2422
2454
|
|
2423
2455
|
> def stop_logs_broadcast
|
2424
2456
|
|
@@ -2426,39 +2458,71 @@ Stop iOS syslog broadcast websocket
|
|
2426
2458
|
|
2427
2459
|
--
|
2428
2460
|
|
2429
|
-
##### [
|
2461
|
+
##### [UIA_TEXT_FIELD](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L17) ios
|
2462
|
+
|
2463
|
+
> UIA_TEXT_FIELD = 'UIATextField'
|
2464
|
+
|
2465
|
+
|
2466
|
+
|
2467
|
+
--
|
2468
|
+
|
2469
|
+
##### [UIATextField](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L18) ios
|
2470
|
+
|
2471
|
+
> UIATextField = UIA_TEXT_FIELD
|
2472
|
+
|
2473
|
+
|
2474
|
+
|
2475
|
+
--
|
2476
|
+
|
2477
|
+
##### [UIA_SECURE_TEXT_FIELD](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L19) ios
|
2478
|
+
|
2479
|
+
> UIA_SECURE_TEXT_FIELD = 'UIASecureTextField'
|
2480
|
+
|
2481
|
+
|
2482
|
+
|
2483
|
+
--
|
2484
|
+
|
2485
|
+
##### [UIASecureTextField](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L20) ios
|
2486
|
+
|
2487
|
+
> UIASecureTextField = UIA_SECURE_TEXT_FIELD
|
2488
|
+
|
2489
|
+
|
2490
|
+
|
2491
|
+
--
|
2492
|
+
|
2493
|
+
##### [XCUIELEMENT_TYPE_TEXT_FIELD](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L22) ios
|
2430
2494
|
|
2431
|
-
>
|
2495
|
+
> XCUIELEMENT_TYPE_TEXT_FIELD = 'XCUIElementTypeTextField'
|
2432
2496
|
|
2433
2497
|
|
2434
2498
|
|
2435
2499
|
--
|
2436
2500
|
|
2437
|
-
##### [
|
2501
|
+
##### [XCUIElementTypeTextField](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L23) ios
|
2438
2502
|
|
2439
|
-
>
|
2503
|
+
> XCUIElementTypeTextField = XCUIELEMENT_TYPE_TEXT_FIELD
|
2440
2504
|
|
2441
2505
|
|
2442
2506
|
|
2443
2507
|
--
|
2444
2508
|
|
2445
|
-
##### [
|
2509
|
+
##### [XCUIELEMENT_TYPE_SECURE_TEXT_FIELD](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L24) ios
|
2446
2510
|
|
2447
|
-
>
|
2511
|
+
> XCUIELEMENT_TYPE_SECURE_TEXT_FIELD = 'XCUIElementTypeSecureTextField'
|
2448
2512
|
|
2449
2513
|
|
2450
2514
|
|
2451
2515
|
--
|
2452
2516
|
|
2453
|
-
##### [XCUIElementTypeSecureTextField](https://github.com/appium/ruby_lib/blob/
|
2517
|
+
##### [XCUIElementTypeSecureTextField](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L25) ios
|
2454
2518
|
|
2455
|
-
> XCUIElementTypeSecureTextField =
|
2519
|
+
> XCUIElementTypeSecureTextField = XCUIELEMENT_TYPE_SECURE_TEXT_FIELD
|
2456
2520
|
|
2457
2521
|
|
2458
2522
|
|
2459
2523
|
--
|
2460
2524
|
|
2461
|
-
##### [text_field_class](https://github.com/appium/ruby_lib/blob/
|
2525
|
+
##### [text_field_class](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L28) ios
|
2462
2526
|
|
2463
2527
|
> def text_field_class
|
2464
2528
|
|
@@ -2470,7 +2534,7 @@ __Returns:__
|
|
2470
2534
|
|
2471
2535
|
--
|
2472
2536
|
|
2473
|
-
##### [secure_text_field_class](https://github.com/appium/ruby_lib/blob/
|
2537
|
+
##### [secure_text_field_class](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L33) ios
|
2474
2538
|
|
2475
2539
|
> def secure_text_field_class
|
2476
2540
|
|
@@ -2482,7 +2546,7 @@ __Returns:__
|
|
2482
2546
|
|
2483
2547
|
--
|
2484
2548
|
|
2485
|
-
##### [textfield](https://github.com/appium/ruby_lib/blob/
|
2549
|
+
##### [textfield](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L42) ios
|
2486
2550
|
|
2487
2551
|
> def textfield(value)
|
2488
2552
|
|
@@ -2500,7 +2564,7 @@ __Returns:__
|
|
2500
2564
|
|
2501
2565
|
--
|
2502
2566
|
|
2503
|
-
##### [textfields](https://github.com/appium/ruby_lib/blob/
|
2567
|
+
##### [textfields](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L61) ios
|
2504
2568
|
|
2505
2569
|
> def textfields(value = false)
|
2506
2570
|
|
@@ -2517,7 +2581,7 @@ __Returns:__
|
|
2517
2581
|
|
2518
2582
|
--
|
2519
2583
|
|
2520
|
-
##### [first_textfield](https://github.com/appium/ruby_lib/blob/
|
2584
|
+
##### [first_textfield](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L69) ios
|
2521
2585
|
|
2522
2586
|
> def first_textfield
|
2523
2587
|
|
@@ -2529,7 +2593,7 @@ __Returns:__
|
|
2529
2593
|
|
2530
2594
|
--
|
2531
2595
|
|
2532
|
-
##### [last_textfield](https://github.com/appium/ruby_lib/blob/
|
2596
|
+
##### [last_textfield](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L75) ios
|
2533
2597
|
|
2534
2598
|
> def last_textfield
|
2535
2599
|
|
@@ -2541,7 +2605,7 @@ __Returns:__
|
|
2541
2605
|
|
2542
2606
|
--
|
2543
2607
|
|
2544
|
-
##### [textfield_exact](https://github.com/appium/ruby_lib/blob/
|
2608
|
+
##### [textfield_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L85) ios
|
2545
2609
|
|
2546
2610
|
> def textfield_exact(value)
|
2547
2611
|
|
@@ -2557,7 +2621,7 @@ __Returns:__
|
|
2557
2621
|
|
2558
2622
|
--
|
2559
2623
|
|
2560
|
-
##### [textfields_exact](https://github.com/appium/ruby_lib/blob/
|
2624
|
+
##### [textfields_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L92) ios
|
2561
2625
|
|
2562
2626
|
> def textfields_exact(value)
|
2563
2627
|
|
@@ -2573,7 +2637,7 @@ __Returns:__
|
|
2573
2637
|
|
2574
2638
|
--
|
2575
2639
|
|
2576
|
-
##### [_textfield_visible](https://github.com/appium/ruby_lib/blob/
|
2640
|
+
##### [_textfield_visible](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L99) ios
|
2577
2641
|
|
2578
2642
|
> def _textfield_visible
|
2579
2643
|
|
@@ -2581,7 +2645,7 @@ Appium
|
|
2581
2645
|
|
2582
2646
|
--
|
2583
2647
|
|
2584
|
-
##### [_textfield_exact_string](https://github.com/appium/ruby_lib/blob/
|
2648
|
+
##### [_textfield_exact_string](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L104) ios
|
2585
2649
|
|
2586
2650
|
> def _textfield_exact_string(value)
|
2587
2651
|
|
@@ -2589,7 +2653,7 @@ Appium
|
|
2589
2653
|
|
2590
2654
|
--
|
2591
2655
|
|
2592
|
-
##### [_textfield_contains_string](https://github.com/appium/ruby_lib/blob/
|
2656
|
+
##### [_textfield_contains_string](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/element/textfield.rb#L111) ios
|
2593
2657
|
|
2594
2658
|
> def _textfield_contains_string(value)
|
2595
2659
|
|
@@ -2597,7 +2661,7 @@ Appium
|
|
2597
2661
|
|
2598
2662
|
--
|
2599
2663
|
|
2600
|
-
##### [static_text_class](https://github.com/appium/ruby_lib/blob/
|
2664
|
+
##### [static_text_class](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/text.rb#L23) ios
|
2601
2665
|
|
2602
2666
|
> def static_text_class
|
2603
2667
|
|
@@ -2609,7 +2673,7 @@ __Returns:__
|
|
2609
2673
|
|
2610
2674
|
--
|
2611
2675
|
|
2612
|
-
##### [text](https://github.com/appium/ruby_lib/blob/
|
2676
|
+
##### [text](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/text.rb#L31) ios
|
2613
2677
|
|
2614
2678
|
> def text(value)
|
2615
2679
|
|
@@ -2622,11 +2686,11 @@ __Parameters:__
|
|
2622
2686
|
|
2623
2687
|
__Returns:__
|
2624
2688
|
|
2625
|
-
[
|
2689
|
+
[UIA_STATIC_TEXT|XCUIELEMENT_TYPE_STATIC_TEXT]
|
2626
2690
|
|
2627
2691
|
--
|
2628
2692
|
|
2629
|
-
##### [texts](https://github.com/appium/ruby_lib/blob/
|
2693
|
+
##### [texts](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/text.rb#L41) ios
|
2630
2694
|
|
2631
2695
|
> def texts(value = false)
|
2632
2696
|
|
@@ -2639,11 +2703,11 @@ __Parameters:__
|
|
2639
2703
|
|
2640
2704
|
__Returns:__
|
2641
2705
|
|
2642
|
-
[Array<
|
2706
|
+
[Array<UIA_STATIC_TEXT|XCUIELEMENT_TYPE_STATIC_TEXT>]
|
2643
2707
|
|
2644
2708
|
--
|
2645
2709
|
|
2646
|
-
##### [first_text](https://github.com/appium/ruby_lib/blob/
|
2710
|
+
##### [first_text](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/text.rb#L50) ios
|
2647
2711
|
|
2648
2712
|
> def first_text
|
2649
2713
|
|
@@ -2651,11 +2715,11 @@ Find the first UIAStaticText|XCUIElementTypeStaticText.
|
|
2651
2715
|
|
2652
2716
|
__Returns:__
|
2653
2717
|
|
2654
|
-
[
|
2718
|
+
[UIA_STATIC_TEXT|XCUIELEMENT_TYPE_STATIC_TEXT]
|
2655
2719
|
|
2656
2720
|
--
|
2657
2721
|
|
2658
|
-
##### [last_text](https://github.com/appium/ruby_lib/blob/
|
2722
|
+
##### [last_text](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/text.rb#L56) ios
|
2659
2723
|
|
2660
2724
|
> def last_text
|
2661
2725
|
|
@@ -2663,11 +2727,11 @@ Find the last UIAStaticText|XCUIElementTypeStaticText.
|
|
2663
2727
|
|
2664
2728
|
__Returns:__
|
2665
2729
|
|
2666
|
-
[
|
2730
|
+
[UIA_STATIC_TEXT|XCUIELEMENT_TYPE_STATIC_TEXT]
|
2667
2731
|
|
2668
2732
|
--
|
2669
2733
|
|
2670
|
-
##### [text_exact](https://github.com/appium/ruby_lib/blob/
|
2734
|
+
##### [text_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/text.rb#L63) ios
|
2671
2735
|
|
2672
2736
|
> def text_exact(value)
|
2673
2737
|
|
@@ -2679,11 +2743,11 @@ __Parameters:__
|
|
2679
2743
|
|
2680
2744
|
__Returns:__
|
2681
2745
|
|
2682
|
-
[
|
2746
|
+
[UIA_STATIC_TEXT|XCUIELEMENT_TYPE_STATIC_TEXT]
|
2683
2747
|
|
2684
2748
|
--
|
2685
2749
|
|
2686
|
-
##### [texts_exact](https://github.com/appium/ruby_lib/blob/
|
2750
|
+
##### [texts_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/text.rb#L70) ios
|
2687
2751
|
|
2688
2752
|
> def texts_exact(value)
|
2689
2753
|
|
@@ -2695,11 +2759,11 @@ __Parameters:__
|
|
2695
2759
|
|
2696
2760
|
__Returns:__
|
2697
2761
|
|
2698
|
-
[Array<
|
2762
|
+
[Array<UIA_STATIC_TEXT|XCUIELEMENT_TYPE_STATIC_TEXT>]
|
2699
2763
|
|
2700
2764
|
--
|
2701
2765
|
|
2702
|
-
##### [xcuitest_source](https://github.com/appium/ruby_lib/blob/
|
2766
|
+
##### [xcuitest_source](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/source.rb#L25) ios
|
2703
2767
|
|
2704
2768
|
> def xcuitest_source(format: :xml)
|
2705
2769
|
|
@@ -2715,7 +2779,7 @@ xcuitest_source format: :json
|
|
2715
2779
|
|
2716
2780
|
--
|
2717
2781
|
|
2718
|
-
##### [button_class](https://github.com/appium/ruby_lib/blob/
|
2782
|
+
##### [button_class](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/button.rb#L23) ios
|
2719
2783
|
|
2720
2784
|
> def button_class
|
2721
2785
|
|
@@ -2727,7 +2791,7 @@ __Returns:__
|
|
2727
2791
|
|
2728
2792
|
--
|
2729
2793
|
|
2730
|
-
##### [button](https://github.com/appium/ruby_lib/blob/
|
2794
|
+
##### [button](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/button.rb#L31) ios
|
2731
2795
|
|
2732
2796
|
> def button(value)
|
2733
2797
|
|
@@ -2740,11 +2804,11 @@ __Parameters:__
|
|
2740
2804
|
|
2741
2805
|
__Returns:__
|
2742
2806
|
|
2743
|
-
[
|
2807
|
+
[UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON]
|
2744
2808
|
|
2745
2809
|
--
|
2746
2810
|
|
2747
|
-
##### [buttons](https://github.com/appium/ruby_lib/blob/
|
2811
|
+
##### [buttons](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/button.rb#L42) ios
|
2748
2812
|
|
2749
2813
|
> def buttons(value = false)
|
2750
2814
|
|
@@ -2757,11 +2821,11 @@ __Parameters:__
|
|
2757
2821
|
|
2758
2822
|
__Returns:__
|
2759
2823
|
|
2760
|
-
[Array<
|
2824
|
+
[Array<UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON>]
|
2761
2825
|
|
2762
2826
|
--
|
2763
2827
|
|
2764
|
-
##### [first_button](https://github.com/appium/ruby_lib/blob/
|
2828
|
+
##### [first_button](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/button.rb#L51) ios
|
2765
2829
|
|
2766
2830
|
> def first_button
|
2767
2831
|
|
@@ -2769,11 +2833,11 @@ Find the first UIAButton|XCUIElementTypeButton.
|
|
2769
2833
|
|
2770
2834
|
__Returns:__
|
2771
2835
|
|
2772
|
-
[
|
2836
|
+
[UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON]
|
2773
2837
|
|
2774
2838
|
--
|
2775
2839
|
|
2776
|
-
##### [last_button](https://github.com/appium/ruby_lib/blob/
|
2840
|
+
##### [last_button](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/button.rb#L59) ios
|
2777
2841
|
|
2778
2842
|
> def last_button
|
2779
2843
|
|
@@ -2783,11 +2847,11 @@ Find the last UIAButton|XCUIElementTypeButton.
|
|
2783
2847
|
|
2784
2848
|
__Returns:__
|
2785
2849
|
|
2786
|
-
[
|
2850
|
+
[UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON]
|
2787
2851
|
|
2788
2852
|
--
|
2789
2853
|
|
2790
|
-
##### [button_exact](https://github.com/appium/ruby_lib/blob/
|
2854
|
+
##### [button_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/button.rb#L66) ios
|
2791
2855
|
|
2792
2856
|
> def button_exact(value)
|
2793
2857
|
|
@@ -2799,11 +2863,11 @@ __Parameters:__
|
|
2799
2863
|
|
2800
2864
|
__Returns:__
|
2801
2865
|
|
2802
|
-
[
|
2866
|
+
[UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON]
|
2803
2867
|
|
2804
2868
|
--
|
2805
2869
|
|
2806
|
-
##### [buttons_exact](https://github.com/appium/ruby_lib/blob/
|
2870
|
+
##### [buttons_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/button.rb#L73) ios
|
2807
2871
|
|
2808
2872
|
> def buttons_exact(value)
|
2809
2873
|
|
@@ -2815,11 +2879,11 @@ __Parameters:__
|
|
2815
2879
|
|
2816
2880
|
__Returns:__
|
2817
2881
|
|
2818
|
-
[Array<
|
2882
|
+
[Array<UIA_BUTTON|XCUIELEMENT_TYPE_BUTTON>]
|
2819
2883
|
|
2820
2884
|
--
|
2821
2885
|
|
2822
|
-
##### [find](https://github.com/appium/ruby_lib/blob/
|
2886
|
+
##### [find](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/generic.rb#L22) ios
|
2823
2887
|
|
2824
2888
|
> def find(value)
|
2825
2889
|
|
@@ -2835,7 +2899,7 @@ __Returns:__
|
|
2835
2899
|
|
2836
2900
|
--
|
2837
2901
|
|
2838
|
-
##### [finds](https://github.com/appium/ruby_lib/blob/
|
2902
|
+
##### [finds](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/generic.rb#L29) ios
|
2839
2903
|
|
2840
2904
|
> def finds(value)
|
2841
2905
|
|
@@ -2851,7 +2915,7 @@ __Returns:__
|
|
2851
2915
|
|
2852
2916
|
--
|
2853
2917
|
|
2854
|
-
##### [find_exact](https://github.com/appium/ruby_lib/blob/
|
2918
|
+
##### [find_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/generic.rb#L37) ios
|
2855
2919
|
|
2856
2920
|
> def find_exact(value)
|
2857
2921
|
|
@@ -2867,7 +2931,7 @@ __Returns:__
|
|
2867
2931
|
|
2868
2932
|
--
|
2869
2933
|
|
2870
|
-
##### [finds_exact](https://github.com/appium/ruby_lib/blob/
|
2934
|
+
##### [finds_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/generic.rb#L44) ios
|
2871
2935
|
|
2872
2936
|
> def finds_exact(value)
|
2873
2937
|
|
@@ -2883,7 +2947,7 @@ __Returns:__
|
|
2883
2947
|
|
2884
2948
|
--
|
2885
2949
|
|
2886
|
-
##### [raise_error_if_no_element](https://github.com/appium/ruby_lib/blob/
|
2950
|
+
##### [raise_error_if_no_element](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/generic.rb#L51) ios
|
2887
2951
|
|
2888
2952
|
> def raise_error_if_no_element(element)
|
2889
2953
|
|
@@ -2891,7 +2955,7 @@ __Returns:__
|
|
2891
2955
|
|
2892
2956
|
--
|
2893
2957
|
|
2894
|
-
##### [select_visible_elements](https://github.com/appium/ruby_lib/blob/
|
2958
|
+
##### [select_visible_elements](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/generic.rb#L59) ios
|
2895
2959
|
|
2896
2960
|
> def select_visible_elements(elements)
|
2897
2961
|
|
@@ -2899,7 +2963,7 @@ Return visible elements.
|
|
2899
2963
|
|
2900
2964
|
--
|
2901
2965
|
|
2902
|
-
##### [swipe](https://github.com/appium/ruby_lib/blob/
|
2966
|
+
##### [swipe](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/gestures.rb#L25) ios
|
2903
2967
|
|
2904
2968
|
> def swipe(direction:, element: nil)
|
2905
2969
|
|
@@ -2913,7 +2977,7 @@ __Parameters:__
|
|
2913
2977
|
|
2914
2978
|
--
|
2915
2979
|
|
2916
|
-
##### [scroll](https://github.com/appium/ruby_lib/blob/
|
2980
|
+
##### [scroll](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/gestures.rb#L46) ios
|
2917
2981
|
|
2918
2982
|
> def scroll(direction:, distance: nil, name: nil, element: nil, to_visible: nil, predicate_string: nil)
|
2919
2983
|
|
@@ -2927,7 +2991,7 @@ __Parameters:__
|
|
2927
2991
|
|
2928
2992
|
--
|
2929
2993
|
|
2930
|
-
##### [pinch](https://github.com/appium/ruby_lib/blob/
|
2994
|
+
##### [pinch](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/gestures.rb#L67) ios
|
2931
2995
|
|
2932
2996
|
> def pinch(scale:, velocity: 1.0, element: nil)
|
2933
2997
|
|
@@ -2943,7 +3007,7 @@ __Parameters:__
|
|
2943
3007
|
|
2944
3008
|
--
|
2945
3009
|
|
2946
|
-
##### [double_tap](https://github.com/appium/ruby_lib/blob/
|
3010
|
+
##### [double_tap](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/gestures.rb#L82) ios
|
2947
3011
|
|
2948
3012
|
> def double_tap(x: nil, y: nil, element: nil) # rubocop:disable Naming/UncommunicativeMethodParamName
|
2949
3013
|
|
@@ -2959,7 +3023,7 @@ __Parameters:__
|
|
2959
3023
|
|
2960
3024
|
--
|
2961
3025
|
|
2962
|
-
##### [touch_and_hold](https://github.com/appium/ruby_lib/blob/
|
3026
|
+
##### [touch_and_hold](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/gestures.rb#L99) ios
|
2963
3027
|
|
2964
3028
|
> def touch_and_hold(x: nil, y: nil, element: nil, duration: 1.0) # rubocop:disable Naming/UncommunicativeMethodParamName
|
2965
3029
|
|
@@ -2977,7 +3041,7 @@ __Parameters:__
|
|
2977
3041
|
|
2978
3042
|
--
|
2979
3043
|
|
2980
|
-
##### [two_finger_tap](https://github.com/appium/ruby_lib/blob/
|
3044
|
+
##### [two_finger_tap](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/gestures.rb#L112) ios
|
2981
3045
|
|
2982
3046
|
> def two_finger_tap(element:)
|
2983
3047
|
|
@@ -2993,7 +3057,7 @@ two_finger_tap element: find_element(:accessibility_id, "some item")
|
|
2993
3057
|
|
2994
3058
|
--
|
2995
3059
|
|
2996
|
-
##### [tap](https://github.com/appium/ruby_lib/blob/
|
3060
|
+
##### [tap](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/gestures.rb#L127) ios
|
2997
3061
|
|
2998
3062
|
> def tap(x:, y:, element: nil) # rubocop:disable Naming/UncommunicativeMethodParamName
|
2999
3063
|
|
@@ -3009,7 +3073,7 @@ __Parameters:__
|
|
3009
3073
|
|
3010
3074
|
--
|
3011
3075
|
|
3012
|
-
##### [drag_from_to_for_duration](https://github.com/appium/ruby_lib/blob/
|
3076
|
+
##### [drag_from_to_for_duration](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/gestures.rb#L147) ios
|
3013
3077
|
|
3014
3078
|
> def drag_from_to_for_duration(from_x:, from_y:, to_x:, to_y:, duration: 1.0, element: nil)
|
3015
3079
|
|
@@ -3032,7 +3096,7 @@ drag point should be before to start dragging. Mandatory parameter
|
|
3032
3096
|
|
3033
3097
|
--
|
3034
3098
|
|
3035
|
-
##### [select_picker_wheel](https://github.com/appium/ruby_lib/blob/
|
3099
|
+
##### [select_picker_wheel](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/gestures.rb#L164) ios
|
3036
3100
|
|
3037
3101
|
> def select_picker_wheel(element:, order:, offset: nil)
|
3038
3102
|
|
@@ -3049,7 +3113,7 @@ __Parameters:__
|
|
3049
3113
|
|
3050
3114
|
--
|
3051
3115
|
|
3052
|
-
##### [alert](https://github.com/appium/ruby_lib/blob/
|
3116
|
+
##### [alert](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/gestures.rb#L182) ios
|
3053
3117
|
|
3054
3118
|
> def alert(action:, button_label: nil)
|
3055
3119
|
|
@@ -3074,7 +3138,7 @@ alert action: "dismiss"
|
|
3074
3138
|
|
3075
3139
|
--
|
3076
3140
|
|
3077
|
-
##### [text_field_class](https://github.com/appium/ruby_lib/blob/
|
3141
|
+
##### [text_field_class](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/textfield.rb#L23) ios
|
3078
3142
|
|
3079
3143
|
> def text_field_class
|
3080
3144
|
|
@@ -3086,7 +3150,7 @@ __Returns:__
|
|
3086
3150
|
|
3087
3151
|
--
|
3088
3152
|
|
3089
|
-
##### [secure_text_field_class](https://github.com/appium/ruby_lib/blob/
|
3153
|
+
##### [secure_text_field_class](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/textfield.rb#L28) ios
|
3090
3154
|
|
3091
3155
|
> def secure_text_field_class
|
3092
3156
|
|
@@ -3098,7 +3162,7 @@ __Returns:__
|
|
3098
3162
|
|
3099
3163
|
--
|
3100
3164
|
|
3101
|
-
##### [textfield](https://github.com/appium/ruby_lib/blob/
|
3165
|
+
##### [textfield](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/textfield.rb#L37) ios
|
3102
3166
|
|
3103
3167
|
> def textfield(value)
|
3104
3168
|
|
@@ -3116,7 +3180,7 @@ __Returns:__
|
|
3116
3180
|
|
3117
3181
|
--
|
3118
3182
|
|
3119
|
-
##### [textfields](https://github.com/appium/ruby_lib/blob/
|
3183
|
+
##### [textfields](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/textfield.rb#L57) ios
|
3120
3184
|
|
3121
3185
|
> def textfields(value = false)
|
3122
3186
|
|
@@ -3133,7 +3197,7 @@ __Returns:__
|
|
3133
3197
|
|
3134
3198
|
--
|
3135
3199
|
|
3136
|
-
##### [first_textfield](https://github.com/appium/ruby_lib/blob/
|
3200
|
+
##### [first_textfield](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/textfield.rb#L66) ios
|
3137
3201
|
|
3138
3202
|
> def first_textfield
|
3139
3203
|
|
@@ -3145,7 +3209,7 @@ __Returns:__
|
|
3145
3209
|
|
3146
3210
|
--
|
3147
3211
|
|
3148
|
-
##### [last_textfield](https://github.com/appium/ruby_lib/blob/
|
3212
|
+
##### [last_textfield](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/textfield.rb#L72) ios
|
3149
3213
|
|
3150
3214
|
> def last_textfield
|
3151
3215
|
|
@@ -3157,7 +3221,7 @@ __Returns:__
|
|
3157
3221
|
|
3158
3222
|
--
|
3159
3223
|
|
3160
|
-
##### [textfield_exact](https://github.com/appium/ruby_lib/blob/
|
3224
|
+
##### [textfield_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/textfield.rb#L82) ios
|
3161
3225
|
|
3162
3226
|
> def textfield_exact(value)
|
3163
3227
|
|
@@ -3173,7 +3237,7 @@ __Returns:__
|
|
3173
3237
|
|
3174
3238
|
--
|
3175
3239
|
|
3176
|
-
##### [textfields_exact](https://github.com/appium/ruby_lib/blob/
|
3240
|
+
##### [textfields_exact](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/element/textfield.rb#L89) ios
|
3177
3241
|
|
3178
3242
|
> def textfields_exact(value)
|
3179
3243
|
|
@@ -3189,7 +3253,7 @@ __Returns:__
|
|
3189
3253
|
|
3190
3254
|
--
|
3191
3255
|
|
3192
|
-
##### [set_pasteboard](https://github.com/appium/ruby_lib/blob/
|
3256
|
+
##### [set_pasteboard](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/pasteboard.rb#L26) ios
|
3193
3257
|
|
3194
3258
|
> def set_pasteboard(content:, encoding: nil)
|
3195
3259
|
|
@@ -3204,7 +3268,7 @@ The parameter is mandatory
|
|
3204
3268
|
|
3205
3269
|
--
|
3206
3270
|
|
3207
|
-
##### [get_pasteboard](https://github.com/appium/ruby_lib/blob/
|
3271
|
+
##### [get_pasteboard](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/pasteboard.rb#L38) ios
|
3208
3272
|
|
3209
3273
|
> def get_pasteboard(encoding: nil)
|
3210
3274
|
|
@@ -3216,7 +3280,7 @@ __Parameters:__
|
|
3216
3280
|
|
3217
3281
|
--
|
3218
3282
|
|
3219
|
-
##### [install_certificate](https://github.com/appium/ruby_lib/blob/
|
3283
|
+
##### [install_certificate](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/certificate.rb#L32) ios
|
3220
3284
|
|
3221
3285
|
> def install_certificate(cer_file:)
|
3222
3286
|
|
@@ -3231,7 +3295,7 @@ __Parameters:__
|
|
3231
3295
|
|
3232
3296
|
--
|
3233
3297
|
|
3234
|
-
##### [xcuitest_get_contexts](https://github.com/appium/ruby_lib/blob/
|
3298
|
+
##### [xcuitest_get_contexts](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/get_context.rb#L28) ios
|
3235
3299
|
|
3236
3300
|
> def xcuitest_get_contexts
|
3237
3301
|
|
@@ -3239,7 +3303,7 @@ Get contexts
|
|
3239
3303
|
|
3240
3304
|
--
|
3241
3305
|
|
3242
|
-
##### [xcuitest_install_app](https://github.com/appium/ruby_lib/blob/
|
3306
|
+
##### [xcuitest_install_app](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/multi_app_handler.rb#L35) ios
|
3243
3307
|
|
3244
3308
|
> def xcuitest_install_app(app:)
|
3245
3309
|
|
@@ -3259,7 +3323,7 @@ __Returns:__
|
|
3259
3323
|
|
3260
3324
|
--
|
3261
3325
|
|
3262
|
-
##### [xcuitest_app_installed?](https://github.com/appium/ruby_lib/blob/
|
3326
|
+
##### [xcuitest_app_installed?](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/multi_app_handler.rb#L49) ios
|
3263
3327
|
|
3264
3328
|
> def xcuitest_app_installed?(bundle_id:)
|
3265
3329
|
|
@@ -3275,7 +3339,7 @@ __Returns:__
|
|
3275
3339
|
|
3276
3340
|
--
|
3277
3341
|
|
3278
|
-
##### [xcuitest_remove_app](https://github.com/appium/ruby_lib/blob/
|
3342
|
+
##### [xcuitest_remove_app](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/multi_app_handler.rb#L64) ios
|
3279
3343
|
|
3280
3344
|
> def xcuitest_remove_app(bundle_id:)
|
3281
3345
|
|
@@ -3292,7 +3356,7 @@ __Returns:__
|
|
3292
3356
|
|
3293
3357
|
--
|
3294
3358
|
|
3295
|
-
##### [xcuitest_launch_app](https://github.com/appium/ruby_lib/blob/
|
3359
|
+
##### [xcuitest_launch_app](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/multi_app_handler.rb#L79) ios
|
3296
3360
|
|
3297
3361
|
> def xcuitest_launch_app(bundle_id:)
|
3298
3362
|
|
@@ -3309,7 +3373,7 @@ __Returns:__
|
|
3309
3373
|
|
3310
3374
|
--
|
3311
3375
|
|
3312
|
-
##### [xcuitest_terminate_app](https://github.com/appium/ruby_lib/blob/
|
3376
|
+
##### [xcuitest_terminate_app](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/multi_app_handler.rb#L94) ios
|
3313
3377
|
|
3314
3378
|
> def xcuitest_terminate_app(bundle_id:)
|
3315
3379
|
|
@@ -3326,7 +3390,7 @@ __Returns:__
|
|
3326
3390
|
|
3327
3391
|
--
|
3328
3392
|
|
3329
|
-
##### [xcuitest_query_app_status](https://github.com/appium/ruby_lib/blob/
|
3393
|
+
##### [xcuitest_query_app_status](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/multi_app_handler.rb#L116) ios
|
3330
3394
|
|
3331
3395
|
> def xcuitest_query_app_status(bundle_id:)
|
3332
3396
|
|
@@ -3350,7 +3414,7 @@ __Returns:__
|
|
3350
3414
|
|
3351
3415
|
--
|
3352
3416
|
|
3353
|
-
##### [xcuitest_activate_app](https://github.com/appium/ruby_lib/blob/
|
3417
|
+
##### [xcuitest_activate_app](https://github.com/appium/ruby_lib/blob/499e824668f63958c2fe047b76841612f74d2c1c/lib/appium_lib/ios/xcuitest/command/multi_app_handler.rb#L132) ios
|
3354
3418
|
|
3355
3419
|
> def xcuitest_activate_app(bundle_id:)
|
3356
3420
|
|