appium_lib_core 4.1.0 → 5.0.0.rc4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +8 -0
  3. data/.github/workflows/unittest.yml +2 -2
  4. data/CHANGELOG.md +54 -277
  5. data/README.md +2 -1
  6. data/Rakefile +4 -0
  7. data/appium_lib_core.gemspec +4 -4
  8. data/ci-jobs/functional/run_appium.yml +2 -2
  9. data/ci-jobs/functional_test.yml +2 -2
  10. data/docs/mobile_command.md +2 -2
  11. data/lib/appium_lib_core/android/device/auth_finger_print.rb +2 -1
  12. data/lib/appium_lib_core/android/device.rb +4 -4
  13. data/lib/appium_lib_core/common/base/bridge.rb +298 -89
  14. data/lib/appium_lib_core/common/base/capabilities.rb +10 -3
  15. data/lib/appium_lib_core/common/base/device_ime.rb +49 -0
  16. data/lib/appium_lib_core/common/base/driver.rb +149 -128
  17. data/lib/appium_lib_core/common/base/driver_settings.rb +51 -0
  18. data/lib/appium_lib_core/common/base/has_location.rb +80 -0
  19. data/lib/appium_lib_core/common/base/has_network_connection.rb +56 -0
  20. data/lib/appium_lib_core/common/base/http_default.rb +1 -3
  21. data/lib/appium_lib_core/common/base/remote_status.rb +31 -0
  22. data/lib/appium_lib_core/common/base/rotable.rb +54 -0
  23. data/lib/appium_lib_core/common/base/screenshot.rb +4 -4
  24. data/lib/appium_lib_core/common/base/search_context.rb +11 -4
  25. data/lib/appium_lib_core/common/base.rb +1 -3
  26. data/lib/appium_lib_core/common/command.rb +259 -4
  27. data/lib/appium_lib_core/common/device/image_comparison.rb +12 -4
  28. data/lib/appium_lib_core/common/device/keyevent.rb +4 -4
  29. data/lib/appium_lib_core/common/{command/mjsonwp.rb → device/orientation.rb} +14 -11
  30. data/lib/appium_lib_core/common/device/value.rb +4 -4
  31. data/lib/appium_lib_core/common/error.rb +4 -1
  32. data/lib/appium_lib_core/common/log.rb +4 -1
  33. data/lib/appium_lib_core/common/touch_action/touch_actions.rb +1 -1
  34. data/lib/appium_lib_core/device.rb +1 -5
  35. data/lib/appium_lib_core/driver.rb +26 -45
  36. data/lib/appium_lib_core/{patch.rb → element.rb} +66 -9
  37. data/lib/appium_lib_core/ios/uiautomation/patch.rb +1 -1
  38. data/lib/appium_lib_core/{common/base/command.rb → mac2/bridge.rb} +9 -8
  39. data/lib/appium_lib_core/mac2/device/screen.rb +48 -0
  40. data/lib/appium_lib_core/mac2/device.rb +92 -0
  41. data/lib/appium_lib_core/mac2.rb +17 -0
  42. data/lib/appium_lib_core/version.rb +2 -2
  43. data/lib/appium_lib_core.rb +2 -5
  44. data/release_notes.md +82 -0
  45. data/script/commands.rb +3 -37
  46. metadata +28 -28
  47. data/lib/appium_lib_core/common/base/bridge/mjsonwp.rb +0 -81
  48. data/lib/appium_lib_core/common/base/bridge/w3c.rb +0 -252
  49. data/lib/appium_lib_core/common/command/common.rb +0 -110
  50. data/lib/appium_lib_core/common/command/w3c.rb +0 -56
data/CHANGELOG.md CHANGED
@@ -5,69 +5,98 @@ Read `release_notes.md` for commit level details.
5
5
  ## [Unreleased]
6
6
 
7
7
  ### Enhancements
8
- - Ruby 3.0 support
8
+ - Allow to override an existing method by `Appium::Core::Base::Driver#add_command` since Appium drivers/plugins allow to override them
9
9
 
10
10
  ### Bug fixes
11
11
 
12
12
  ### Deprecations
13
13
 
14
- ## [4.1.0] - 2020-12-25
14
+ ## [5.0.0]
15
+
16
+ - Update base selenium webdriver version to `4.0.0`
17
+ - Support only W3C spec
18
+ - Support Ruby 2.5+
19
+ - Raises `::Appium::Core::Error::ArgumentError` instead of `ArgumentError` for this library specific argument errors
20
+ - Removed `desired_capabilities` from capabilities. Please use `capabilities` key name instead.
21
+ - `element.id` returns the element id instead of `element.ref`
22
+ - Removed `driver#screenshot`. Please use `driver#save_screenshot` instead.
23
+ - Remove `driver#send_keys` to send keys to an active element. Please use `driver.action.send_keys('happy testing').perform` instead.
24
+ - No longer set default `timeouts` as `0`. ruby_lib_core calls `/timeouts` endpoint only when `appium_lib: { wait: 5 }` is provided explicitly.
25
+
26
+ ## [4.7.0] - 2021-07-17
15
27
 
16
28
  ### Enhancements
17
- - Ruby 3.0 support
29
+ - Add `satellites` option in `Appium::Core::Base::Driver#set_location`
18
30
 
19
- ### Bug fixes
31
+ ## [4.6.0] - 2021-06-03
20
32
 
21
- ### Deprecations
33
+ ### Enhancements
34
+ - Add `Appium::Core::Base::Driver#add_command` to allow you to add your own command
22
35
 
23
- ## [4.0.0] - 2020-12-19
36
+ ## [4.5.0] - 2021-03-14
24
37
 
25
- Supported Ruby version is 2.4+
38
+ ### Enhancements
39
+ - Add `speed` argument for `Appium::Core::Base::Driver#set_location` since Appium 1.21.0
40
+ - Add `multiple` and `match_neighbour_threshold` arguments for `Appium::Core::Base::Driver#find_image_occurrence`
41
+
42
+ ## [4.4.1(4.4.0)] - 2021-02-15(2021-02-13)
26
43
 
27
44
  ### Enhancements
45
+ - Returns `{}` any errors in `Core#appium_server_version` to prevent errors in some cases
28
46
 
29
- ### Bug fixes
47
+ ## [4.3.1(4.3.0)] - 2021-02-07(2021-02-05)
48
+
49
+ ### Enhancements
50
+ - Add `start_recording_screen` for Mac2 driver
51
+
52
+ ## [4.2.1] - 2021-01-10
53
+
54
+ ### Enhancements
55
+ - Refactor routable
56
+
57
+ ## [4.2.0] - 2021-01-02
58
+
59
+ ### Enhancements
60
+ - Add `Element#screenshot`, `Element#screenshot_as` and `Element#save_screenshot` in Element module
61
+ - `Element#screenshot_as` and `Element#save_screenshot` are same as `Driver#element_screenshot_as` and `Driver#save_element_screenshot`
62
+ - `Element#screenshot` is same as `Element#screenshot_as(:base64)`
63
+
64
+ ## [4.1.1] - 2020-12-25
65
+
66
+ ### Enhancements
67
+ - Ruby 3.0 support
68
+ - Arguments in `@driver.execute_cdp`
69
+ - It should be like `@driver.execute_cdp 'Page.captureScreenshot', quality: 50, format: 'jpeg'` as keyword arguments
70
+ instead of `@driver.execute_cdp 'Page.captureScreenshot', { quality: 50, format: 'jpeg' }` in Ruby 3
71
+
72
+ ## [4.0.0] - 2020-12-19
73
+
74
+ Supported Ruby version is 2.4+
30
75
 
31
76
  ### Deprecations
32
77
  - No longer work with `forceMjsonwp` capability to force the session MJSONWP
33
78
 
34
79
  ## [3.11.1] - 2020-11-20
35
80
 
36
- ### Enhancements
37
-
38
81
  ### Bug fixes
39
82
  - Fix `install_app` to be able to set no args for options
40
83
 
41
- ### Deprecations
42
-
43
84
  ## [3.11.0] - 2020-08-01
44
85
 
45
86
  ### Enhancements
46
87
  - Security update [GHSA-2v5c-755p-p4gv](https://github.com/advisories/GHSA-2v5c-755p-p4gv)
47
88
  - Affects only _::Appium::Core::WebSocket_
48
89
 
49
- ### Bug fixes
50
-
51
- ### Deprecations
52
-
53
90
  ## [3.10.1] - 2020-06-29
54
91
 
55
- ### Enhancements
56
-
57
92
  ### Bug fixes
58
93
  - Fix duplication warning of `execute_cdp`
59
94
 
60
- ### Deprecations
61
-
62
95
  ## [3.10.0] - 2020-06-09
63
96
 
64
97
  ### Enhancements
65
98
  - Remove deprecated `Selenium::WebDriver::Error::TimeOutError`
66
99
 
67
- ### Bug fixes
68
-
69
- ### Deprecations
70
-
71
100
  ## [3.9.0] - 2020-05-31
72
101
 
73
102
  ### Enhancements
@@ -86,10 +115,6 @@ Supported Ruby version is 2.4+
86
115
  @driver = Appium::Core.for(opts).start_driver
87
116
  ```
88
117
 
89
- ### Bug fixes
90
-
91
- ### Deprecations
92
-
93
118
  ## [3.8.0] - 2020-05-17
94
119
 
95
120
  ### Enhancements
@@ -99,8 +124,6 @@ Supported Ruby version is 2.4+
99
124
  ### Bug fixes
100
125
  - Fix `x-idempotency-key` header to add it only in new session request (https://github.com/appium/ruby_lib_core/issues/262)
101
126
 
102
- ### Deprecations
103
-
104
127
  ## [3.7.0] - 2020-04-18
105
128
 
106
129
  ### Enhancements
@@ -109,76 +132,44 @@ Supported Ruby version is 2.4+
109
132
  - Add chrome devtools endpoint which is available chrome module in Selenium Ruby binding
110
133
  - https://github.com/appium/appium-base-driver/pull/405
111
134
 
112
- ### Bug fixes
113
-
114
- ### Deprecations
115
-
116
135
  ## [3.6.1, 3.6.0] - 2020-03-15
117
136
 
118
137
  ### Enhancements
119
138
  - Add screen record feature for Windows driver (https://github.com/appium/appium-windows-driver/pull/66)
120
139
  - `#start_recording_screen`, `#stop_recording_screen`
121
140
 
122
- ### Bug fixes
123
-
124
- ### Deprecations
125
-
126
141
  ## [3.5.0] - 2020-01-11
127
142
 
128
143
  ### Enhancements
129
144
  - Add `:viewmatcher` selector like `@driver.find_elements :view_matcher, { name: 'withText', args: %w(Accessibility), class: 'androidx.test.espresso.matcher.ViewMatchers' }`
130
145
 
131
- ### Bug fixes
132
-
133
- ### Deprecations
134
-
135
146
  ## [3.4.2] - 2019-12-29
136
147
 
137
148
  ### Enhancements
138
149
  - Add `attr_reader :bridge` for flutter driver not to use `send`
139
150
  - https://github.com/truongsinh/appium-flutter-driver/pull/35
140
151
 
141
- ### Bug fixes
142
-
143
- ### Deprecations
144
-
145
152
  ## [3.4.0, 3.4.1] - 2019-12-26, 2019-12-27
146
153
 
147
154
  ### Enhancements
148
155
  - Fix Ruby 2.7 warnings
149
156
 
150
- ### Bug fixes
151
-
152
- ### Deprecations
153
-
154
157
  ## [3.3.0] - 2019-11-08
155
158
 
156
159
  ### Enhancements
157
160
  - Add `Logs#event` to post a custom log by `@driver.logs.event vendor: 'appium', event: 'funEvent'`
158
161
  - Add `Logs#events` to get events by `@driver.logs.events`. It is equal to `@driver.session_capabilities['events']`
159
162
 
160
- ### Bug fixes
161
-
162
- ### Deprecations
163
-
164
163
  ## [3.2.3] - 2019-09-30
165
164
 
166
165
  ### Enhancements
167
166
  - Add `system_bars` as an alias to `get_system_bars`
168
167
 
169
- ### Bug fixes
170
-
171
- ### Deprecations
172
-
173
168
  ## [3.2.2] - 2019-08-04
174
169
 
175
- ### Enhancements
176
-
177
170
  ### Bug fixes
178
171
  - Fixed parameters of `remove_app`
179
172
 
180
- ### Deprecations
181
-
182
173
  ## [3.2.1] - 2019-07-19
183
174
 
184
175
  ### Enhancements
@@ -200,39 +191,23 @@ Supported Ruby version is 2.4+
200
191
  - Add `execute_driver` to run a batch script
201
192
  - It requires Appium version which has `execute_driver` support
202
193
 
203
- ### Bug fixes
204
-
205
- ### Deprecations
206
-
207
194
  ## [3.1.3] - 2019-06-18
208
195
 
209
196
  ### Enhancements
210
197
  - Add arguments for `start_activity`
211
198
  - `intentAction`, `intentCategory`, `intentFlags`, `dontStopAppOnReset`
212
199
 
213
- ### Bug fixes
214
-
215
- ### Deprecations
216
-
217
200
  ## [3.1.2] - 2019-05-10
218
201
 
219
202
  ### Enhancements
220
203
  - Add `sessions` command to get all available sessions on the Appium server
221
204
  - [internal] Tweak error messages in emulator module
222
205
 
223
- ### Bug fixes
224
-
225
- ### Deprecations
226
-
227
206
  ## [3.1.1] - 2019-04-26
228
207
 
229
208
  ### Enhancements
230
209
  - [internal] Catch `Selenium::WebDriver::Error::TimeoutError` which will be used instead of `Selenium::WebDriver::Error::TimeOutError`
231
210
 
232
- ### Bug fixes
233
-
234
- ### Deprecations
235
-
236
211
  ## [3.1.0] - 2019-03-31
237
212
 
238
213
  ### Enhancements
@@ -240,28 +215,16 @@ Supported Ruby version is 2.4+
240
215
  - `platformName: :tvos, automationName: :xcuitest` can work for iOS tvOS
241
216
  - It requires Appium 1.13
242
217
 
243
- ### Bug fixes
244
-
245
- ### Deprecations
246
-
247
218
  ## [3.0.4] - 2019-03-24
248
219
 
249
220
  ### Enhancements
250
221
  - Add `pixelFormat` argument in screen record for iOS
251
222
 
252
- ### Bug fixes
253
-
254
- ### Deprecations
255
-
256
223
  ## [3.0.3] - 2019-03-11
257
224
 
258
225
  ### Enhancements
259
226
  - [internal] Bump Rubocop target Ruby version to Ruby 2.3
260
227
 
261
- ### Bug fixes
262
-
263
- ### Deprecations
264
-
265
228
  ## [3.0.2] - 2019-03-07
266
229
 
267
230
  ### Enhancements
@@ -271,17 +234,11 @@ Supported Ruby version is 2.4+
271
234
  - [internal] Fixed typo in `Emulator#gsm_signal` [#196](https://github.com/appium/ruby_lib_core/pull/196)
272
235
  - Thanks [khanhdodang](https://github.com/khanhdodang)
273
236
 
274
- ### Deprecations
275
-
276
237
  ## [3.0.1] - 2019-02-25
277
238
 
278
239
  ### Enhancements
279
240
  - Add `:data_matcher` find_element/s attribute [appium-espresso-driver#386](https://github.com/appium/appium-espresso-driver/pull/386)
280
241
 
281
- ### Bug fixes
282
-
283
- ### Deprecations
284
-
285
242
  ## [3.0.0] - 2019-02-06
286
243
 
287
244
  This release has a breaking change about an implicit wait.
@@ -307,8 +264,6 @@ The behaviour follows the default spec in WebDriver.
307
264
  ### Bug fixes
308
265
  - Fix potential override of `AppManagement#background_app` [#188](https://github.com/appium/ruby_lib_core/pull/188)
309
266
 
310
- ### Deprecations
311
-
312
267
  ## [2.3.4] - 2019-01-31
313
268
  ### Enhancements
314
269
  - Add 3D touch option for `TouchAction#press` [appium/WebDriverAgent#79](https://github.com/appium/WebDriverAgent/pull/79)
@@ -317,16 +272,10 @@ The behaviour follows the default spec in WebDriver.
317
272
  ### Bug fixes
318
273
  - Stop sending blank value in `start_activity`
319
274
 
320
- ### Deprecations
321
-
322
275
  ## [2.3.3] - 2019-01-22
323
- ### Enhancements
324
-
325
276
  ### Bug fixes
326
277
  - Add `*args, &block` in method missing in `Selenium::WebDriver::Element` [#184](https://github.com/appium/ruby_lib_core/pull/184)
327
278
 
328
- ### Deprecations
329
-
330
279
  ## [2.3.2] - 2019-01-20
331
280
  ### Enhancements
332
281
  - Add alias for some method calls
@@ -337,18 +286,12 @@ The behaviour follows the default spec in WebDriver.
337
286
  ### Bug fixes
338
287
  - `ServerError` inherits `CoreError` in order to handle it as an exception
339
288
 
340
- ### Deprecations
341
-
342
289
  ## [2.3.1] - 2019-01-13
343
290
  ### Enhancements
344
291
  - `set_network_connection` accepts keys as same as `network_connection_type` in addition to numbers
345
292
  - `{ :airplane_mode: 1, wifi: 2, data: 4, all: 6, none: 0 }`
346
293
  - Read [documentation](https://www.rubydoc.info/github/appium/ruby_lib_core/master/Appium/Core/Android/Device#set_network_connection-instance_method) more
347
294
 
348
- ### Bug fixes
349
-
350
- ### Deprecations
351
-
352
295
  ## [2.3.0] - 2019-01-07
353
296
  ### Enhancements
354
297
  - Use `Base64.strict_encode64` when this client sends `Base64` encoded data to server
@@ -356,33 +299,19 @@ The behaviour follows the default spec in WebDriver.
356
299
  - Continues to decode base 64 data following `decode64` to accept RFC 2045 format
357
300
  - Add `query_app_state` as an alias of `app_state` to get application status
358
301
 
359
- ### Bug fixes
360
-
361
- ### Deprecations
362
-
363
302
  ## [2.2.2] - 2018-12-22
364
303
  ### Enhancements
365
304
  - Append `appium` in header: `appium/ruby_lib_core/2.2.1 (selenium/3.141.0 (ruby macosx))`
366
305
 
367
- ### Bug fixes
368
-
369
- ### Deprecations
370
-
371
306
  ## [2.2.1] - 2018-12-08
372
- ### Enhancements
373
-
374
307
  ### Bug fixes
375
308
  - Reduce warnings for method definitions
376
309
 
377
- ### Deprecations
378
-
379
310
  ## [2.2.0] - 2018-12-01
380
311
  ### Enhancements
381
312
  - Add `::Appium::Core::Base.platform` to call `::Selenium::WebDriver::Platform`
382
313
  - Can identify platform using `::Appium::Core::Base.platform.windows?` for example
383
314
 
384
- ### Bug fixes
385
-
386
315
  ### Deprecations
387
316
  - `:offset_x` and `:offset_y` in `TouchAction#swipe` is deprecated in favor of `:end_x` and `:end_y`
388
317
 
@@ -401,10 +330,6 @@ The behaviour follows the default spec in WebDriver.
401
330
  - Update `start_recording_screen` for iOS, Appium 1.10.0
402
331
  - Add `:video_scale` and update `:video_type`
403
332
 
404
- ### Bug fixes
405
-
406
- ### Deprecations
407
-
408
333
  ## [2.1.0] - 2018-11-14
409
334
  ### Enhancements
410
335
  - Support below style _1_, has _url_ parameter, in addition to style _2_
@@ -417,27 +342,15 @@ The behaviour follows the default spec in WebDriver.
417
342
  ```
418
343
  - Add `:video_fps` param for screen recording in iOS(XCUITest) to sync with Appium 1.10.0
419
344
 
420
- ### Bug fixes
421
-
422
- ### Deprecations
423
-
424
345
  ## [2.0.6] - 2018-11-08
425
346
  ### Enhancements
426
347
  - Allow selenium update following Pi versioning like 3.141.0
427
348
  - [internal] Update dev libraries
428
349
 
429
- ### Bug fixes
430
-
431
- ### Deprecations
432
-
433
350
  ## [2.0.5] - 2018-10-30
434
351
  ### Enhancements
435
352
  - [internal] No longer send `strategy: :tapOutside` as default value in Android
436
353
 
437
- ### Bug fixes
438
-
439
- ### Deprecations
440
-
441
354
  ## [2.0.4] - 2018-10-19
442
355
  ### Enhancements
443
356
  - Add custom locator in the future work: [element-finding-plugins](https://github.com/appium/appium/blob/master/docs/en/advanced-concepts/element-finding-plugins.md)
@@ -447,27 +360,15 @@ The behaviour follows the default spec in WebDriver.
447
360
 
448
361
  ```
449
362
 
450
- ### Bug fixes
451
-
452
- ### Deprecations
453
-
454
363
  ## [2.0.3] - 2018-10-11
455
364
  ### Enhancements
456
365
  - Set `'selenium-webdriver', '~> 3.14.1'`
457
366
 
458
- ### Bug fixes
459
-
460
- ### Deprecations
461
-
462
367
  ## [2.0.2] - 2018-10-02
463
368
  ### Enhancements
464
369
  - Add finger print feature for Android emulators [#13](https://github.com/appium/ruby_lib_core/issues/13)
465
370
  - Add `keyboard_shown?` and `context=` as aliases of `is_keyboard_shown` and `set_contex`
466
371
 
467
- ### Bug fixes
468
-
469
- ### Deprecations
470
-
471
372
  ## [2.0.1] - 2018-09-01
472
373
  ### Enhancements
473
374
  - Add `Appium::Core::Base::Driver#perform_actions` to send multiple actions. See `test_multiple_actions` as an example.
@@ -475,8 +376,6 @@ The behaviour follows the default spec in WebDriver.
475
376
  ### Bug fixes
476
377
  - Fix desired capability for W3C protocol under selenium grid environment [#137](https://github.com/appium/ruby_lib_core/issues/137)
477
378
 
478
- ### Deprecations
479
-
480
379
  ## [2.0.0] - 2018-08-25
481
380
 
482
381
  This release has a breaking change for creating core. Thus, I've bumped the major version.
@@ -484,20 +383,14 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
484
383
  ### Enhancements
485
384
  - use `autoload` to load Android/iOS modules
486
385
 
487
- ### Bug fixes
488
-
489
386
  ### Deprecations
490
387
  - `@core = Appium::Core.for(self, opts)` is deprecated in favor of `@core = Appium::Core.for(opts)`
491
388
  - Call `extend Appium::Core::Device` if you'd like to extend methods defined in `Appium::Core`
492
389
  - Read [#816](https://github.com/appium/ruby_lib/pull/816) as an example
493
390
 
494
391
  ## [1.9.2] - 2018-08-23
495
- ### Enhancements
496
-
497
392
  ### Bug fixes
498
- - fix unexpedted method missing against `:to_hash` in Element
499
-
500
- ### Deprecations
393
+ - fix unexpected method missing against `:to_hash` in Element
501
394
 
502
395
  ## [1.9.1] - 2018-08-20
503
396
  ### Enhancements
@@ -507,8 +400,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
507
400
  ### Bug fixes
508
401
  - [internal] Fix raising error in `set_implicit_wait_by_default` [#130](https://github.com/appium/ruby_lib_core/issues/130)
509
402
 
510
- ### Deprecations
511
-
512
403
  ## [1.9.0] - 2018-08-05
513
404
  ### Enhancements
514
405
  - Update documentation about `start_recording_screen`
@@ -516,8 +407,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
516
407
  - Support `find_element/s :image, partial_image` [#119](https://github.com/appium/ruby_lib_core/pull/119)
517
408
  - Requires `selenium-webdriver 3.14+` because of W3C actions [#115](https://github.com/appium/ruby_lib_core/pull/115)
518
409
 
519
- ### Bug fixes
520
-
521
410
  ### Deprecations
522
411
  - [Internal] Deprecate experimental `ImageElement` in favor of `Element`
523
412
 
@@ -527,10 +416,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
527
416
  - Use method missing to get attributes like `e.resource_id` instead of `e.attribute 'resource-id'` [#116](https://github.com/appium/ruby_lib_core/pull/116)
528
417
  - Set `'~> 3.5', '< 3.14'`
529
418
 
530
- ### Bug fixes
531
-
532
- ### Deprecations
533
-
534
419
  ## [1.8.3] - 2018-07-20
535
420
  ### Enhancements
536
421
  - Relax the logic of `:app` capability
@@ -538,11 +423,7 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
538
423
  ### Bug fixes
539
424
  - Fix `within_context`
540
425
 
541
- ### Deprecations
542
-
543
426
  ## [1.8.2] - 2018-07-17
544
- ### Enhancements
545
-
546
427
  ### Bug fixes
547
428
  - Available packages over HTTP [#106](https://github.com/appium/ruby_lib_core/issues/106)
548
429
 
@@ -550,23 +431,15 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
550
431
  - Remove warning of camelCase capability for W3C format
551
432
 
552
433
  ## [1.8.1] - 2018-07-13
553
- ### Enhancements
554
-
555
434
  ### Bug fixes
556
435
  - Fix including search context in `::Selenium::WebDriver::Elemenet`
557
436
  - `include ::Appium::Core::Base::SearchContext` instead of `::Selenium::WebDriver::SearchContext`
558
437
 
559
- ### Deprecations
560
-
561
438
  ## [1.8.0] - 2018-07-07
562
439
  ### Enhancements
563
440
  - Add Tizen case
564
441
  - [Internal] reduce method definition by `add_endpoint_method`
565
442
 
566
- ### Bug fixes
567
-
568
- ### Deprecations
569
-
570
443
  ## [1.7.2] - 2018-06-23
571
444
  ### Enhancements
572
445
  - Add `find_element_by_image` and `find_elements_by_image` to handle `ImageElement`
@@ -575,10 +448,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
575
448
  - Experimental feature
576
449
  - [Internal] Define screenshot methods in appium_lib_core instead of Selenium's one
577
450
 
578
- ### Bug fixes
579
-
580
- ### Deprecations
581
-
582
451
  ## [1.7.1] - 2018-06-15
583
452
  ### Enhancements
584
453
  - Add a `format` argument for `device_time` [#94](https://github.com/appium/ruby_lib_core/pull/94)
@@ -586,8 +455,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
586
455
  ### Bug fixes
587
456
  - Return empty array `[]` for find_elements
588
457
 
589
- ### Deprecations
590
-
591
458
  ## [1.7.0] - 2018-05-28
592
459
  ### Enhancements
593
460
  - Has one **Breaking Change**
@@ -600,10 +467,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
600
467
  - [Internal] Change directory and file structure
601
468
  - [Internal] Set default content-type
602
469
 
603
- ### Bug fixes
604
-
605
- ### Deprecations
606
-
607
470
  ## [1.6.0] - 2018-05-08
608
471
  ### Enhancements
609
472
  - **Breaking Change**
@@ -615,36 +478,22 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
615
478
  - add `battery_info` to get battery information
616
479
  - add `is_keyboard_shown` for iOS ( see also https://github.com/appium/appium-xcuitest-driver/pull/664/files )
617
480
 
618
- ### Bug fixes
619
-
620
- ### Deprecations
621
-
622
481
  ## [1.5.1] - 2018-04-25
623
- ### Enhancements
624
-
625
482
  ### Bug fixes
626
483
  - Revert timeout logic in `1.4.1`
627
484
 
628
- ### Deprecations
629
-
630
485
  ## [1.5.0] - 2018-04-25
631
486
  ### Enhancements
632
487
  - [internal] Remove hot fix for XCUITest action
633
488
 
634
- ### Bug fixes
635
-
636
489
  ### Deprecations
637
490
  - Changed the name of arguments
638
491
  - `swipe(start_x:, start_y:, end_x:, end_y:)` instead of `swipe(start_x:, start_y:, offset_x:, offset_y:)`
639
492
 
640
493
  ## [1.4.2] - 2018-04-22
641
- ### Enhancements
642
-
643
494
  ### Bug fixes
644
495
  - Revert `delegate_from_appium_driver` for `ruby_lib` compatibility
645
496
 
646
- ### Deprecations
647
-
648
497
  ## [1.4.1] - 2018-04-22
649
498
  ### Enhancements
650
499
  - add base image comparison
@@ -653,54 +502,30 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
653
502
  - Raise `::Appium::Core::Wait::TimeoutError` instead of `::Selenium::WebDriver::Error::TimeOutError`
654
503
  - [internal] Separate mjsonwp commands module and w3c commands module from one command module
655
504
 
656
- ### Bug fixes
657
-
658
- ### Deprecations
659
-
660
505
  ## [1.4.0] - 2018-04-15
661
506
  ### Enhancements
662
507
  - Add a support for WebSocket client based on Faye::WebSocket::Client [#74](https://github.com/appium/ruby_lib_core/pull/74)
663
508
 
664
- ### Bug fixes
665
-
666
- ### Deprecations
667
-
668
509
  ## [1.3.8] - 2018-04-12
669
510
  ### Enhancements
670
511
  - Make no-argument commands friendly for IDE
671
512
 
672
- ### Bug fixes
673
-
674
- ### Deprecations
675
-
676
513
  ## [1.3.7] - 2018-04-02
677
514
  ### Enhancements
678
515
  - Only for `ruby_lib_core` internal process
679
516
  - Remove `touch` action by default and following `selenium-webdriver` in W3C action.
680
517
  - Since XCUITest and UA2 drivers force handling the pointer as `touch`.
681
518
 
682
- ### Bug fixes
683
-
684
- ### Deprecations
685
-
686
519
  ## [1.3.6] - 2018-04-01
687
520
  ### Enhancements
688
521
  - Be able to change `kind` in W3C touch action.
689
522
  - Read: https://github.com/appium/ruby_lib_core/blob/master/lib/appium_lib_core/common/base/bridge/w3c.rb#L29
690
523
 
691
- ### Bug fixes
692
-
693
- ### Deprecations
694
-
695
524
  ## [1.3.5] - 2018-03-30
696
525
  ### Enhancements
697
526
  - Add a `bug_report` option in `start_recording_screen`, Android
698
527
  - Add clipboard apis [#69](https://github.com/appium/ruby_lib_core/pull/69)
699
528
 
700
- ### Bug fixes
701
-
702
- ### Deprecations
703
-
704
529
  ## [1.3.4] - 2018-03-21
705
530
  ### Enhancements
706
531
  - Add `save_viewport_screenshot` which get screenshot except for status bar.
@@ -710,16 +535,10 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
710
535
  ### Bug fixes
711
536
  - Fix _create_session attempt to throw non-existent error type Appium::Core::Error::WebDriverError_ [#66](https://github.com/appium/ruby_lib_core/issues/66)
712
537
 
713
- ### Deprecations
714
-
715
538
  ## [1.3.3] - 2018-03-03
716
539
  ### Enhancements
717
540
  - add `session_capabilities`: https://appium.io/docs/en/commands/session/get/
718
541
 
719
- ### Bug fixes
720
-
721
- ### Deprecations
722
-
723
542
  ## [1.3.2] - 2018-02-18
724
543
  ### Enhancements
725
544
  - Add Android emulator commands
@@ -727,10 +546,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
727
546
  - Add toggles
728
547
  - `toggle_location_services`, `toggle_wifi`, `toggle_data`
729
548
 
730
- ### Bug fixes
731
-
732
- ### Deprecations
733
-
734
549
  ## [1.3.1] - 2018-02-14
735
550
  ### Enhancements
736
551
  - add some app management commands [#58](https://github.com/appium/ruby_lib_core/pull/58)
@@ -752,10 +567,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
752
567
  .perform
753
568
  ```
754
569
 
755
- ### Bug fixes
756
-
757
- ### Deprecations
758
-
759
570
  ## [1.3.0] - 2018-01-28
760
571
  ### Enhancements
761
572
  - `start_recording_screen`/`stop_recording_screen` support iOS from `Appium 1.8.0` [#48](https://github.com/appium/ruby_lib_core/issues/48)
@@ -763,10 +574,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
763
574
  - `start_recording_screen`
764
575
  - The argument, `file_path`, was removed.
765
576
 
766
- ### Bug fixes
767
-
768
- ### Deprecations
769
-
770
577
  ## [1.2.7] - 2018-01-25
771
578
  ### Enhancements
772
579
  - Print warning messages to use camelCase if capability key names are snake_case
@@ -775,8 +582,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
775
582
  ### Bug fixes
776
583
  - Make `@driver.automation_name` downcase [#50](https://github.com/appium/ruby_lib_core/issues/50)
777
584
 
778
- ### Deprecations
779
-
780
585
  ## [1.2.6] - 2018-01-21
781
586
  ### Enhancements
782
587
  - Add `window_rect`
@@ -784,17 +589,11 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
784
589
  ### Bug fixes
785
590
  - Make `@driver.automation_name` symbol when someone define the `automationName` with the server argument. [#50](https://github.com/appium/ruby_lib_core/issues/50)
786
591
 
787
- ### Deprecations
788
-
789
592
  ## [1.2.5] - 2018-01-13
790
593
  ### Enhancements
791
594
  - Enhance W3C support
792
595
  - Timeout related methods
793
596
 
794
- ### Bug fixes
795
-
796
- ### Deprecations
797
-
798
597
  ## [1.2.4] - 2018-01-03
799
598
  ### Enhancements
800
599
  - Refactor `create_session` in `Appium::Core::Base::Bridge`
@@ -806,34 +605,18 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
806
605
  - Read `lib/appium_lib_core/common/base/w3c_bridge.rb` for more details
807
606
  - Can get logs like `driver.logs.available_types` and `driver.logs.get`
808
607
 
809
- ### Bug fixes
810
-
811
- ### Deprecations
812
-
813
608
  ## [1.2.3] - 2017-12-27
814
- ### Enhancements
815
-
816
609
  ### Bug fixes
817
610
  - Fix some w3c methods to work with Appium part 2 [#38](https://github.com/appium/ruby_lib_core/pull/38)
818
611
 
819
- ### Deprecations
820
-
821
612
  ## [1.2.2] - 2017-12-25
822
- ### Enhancements
823
-
824
613
  ### Bug fixes
825
614
  - Fix some w3c methods to work with Appium [#37](https://github.com/appium/ruby_lib_core/pull/37)
826
615
 
827
- ### Deprecations
828
-
829
616
  ## [1.2.1] - 2017-12-23
830
617
  ### Enhancements
831
618
  - override default duration to make some action fast [#36](https://github.com/appium/ruby_lib_core/pull/36)
832
619
 
833
- ### Bug fixes
834
-
835
- ### Deprecations
836
-
837
620
  ## [1.2.0] - 2017-12-23
838
621
  ### Enhancements
839
622
  - Append `appium:` prefix for capabilities automatically due to W3C format.
@@ -842,10 +625,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
842
625
  - IME related
843
626
  - Touch actions based on W3C spec
844
627
 
845
- ### Bug fixes
846
-
847
- ### Deprecations
848
-
849
628
  ## [1.1.0] - 2017-12-16
850
629
  ### Enhancements
851
630
  - Add guidelines in `.github`
@@ -854,8 +633,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
854
633
  ### Bug fixes
855
634
  - fix creating sessions [#31](https://github.com/appium/ruby_lib_core/pull/31) for W3C creating sessions
856
635
 
857
- ### Deprecations
858
-
859
636
  ## [1.0.0] - 2017-11-12
860
637
 
861
638
  Initial release