appium_lib_core 4.1.0 → 9.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +337 -270
  3. data/README.md +65 -15
  4. data/Rakefile +5 -22
  5. data/appium_lib_core.gemspec +12 -15
  6. data/bin/console +0 -4
  7. data/lib/appium_lib_core/android/device/auth_finger_print.rb +4 -1
  8. data/lib/appium_lib_core/android/device/network.rb +10 -0
  9. data/lib/appium_lib_core/android/device/performance.rb +3 -0
  10. data/lib/appium_lib_core/android/device/screen.rb +2 -0
  11. data/lib/appium_lib_core/android/device.rb +80 -17
  12. data/lib/appium_lib_core/common/base/bridge.rb +238 -95
  13. data/lib/appium_lib_core/common/base/capabilities.rb +21 -8
  14. data/lib/appium_lib_core/common/{command/mjsonwp.rb → base/device_ime.rb} +33 -12
  15. data/lib/appium_lib_core/common/base/driver.rb +263 -334
  16. data/lib/appium_lib_core/common/base/driver_settings.rb +51 -0
  17. data/lib/appium_lib_core/common/base/has_location.rb +80 -0
  18. data/lib/appium_lib_core/common/base/has_network_connection.rb +56 -0
  19. data/lib/appium_lib_core/common/base/http_default.rb +22 -38
  20. data/lib/appium_lib_core/{ios/uiautomation/bridge.rb → common/base/remote_status.rb} +9 -8
  21. data/lib/appium_lib_core/common/base/rotable.rb +62 -0
  22. data/lib/appium_lib_core/common/base/screenshot.rb +8 -8
  23. data/lib/appium_lib_core/common/base/search_context.rb +98 -172
  24. data/lib/appium_lib_core/common/base.rb +1 -5
  25. data/lib/appium_lib_core/common/command.rb +244 -4
  26. data/lib/appium_lib_core/common/device/app_management.rb +2 -26
  27. data/lib/appium_lib_core/common/device/context.rb +1 -5
  28. data/lib/appium_lib_core/common/device/image_comparison.rb +12 -4
  29. data/lib/appium_lib_core/common/device/keyevent.rb +4 -4
  30. data/lib/appium_lib_core/common/device/{touch_actions.rb → orientation.rb} +6 -10
  31. data/lib/appium_lib_core/common/error.rb +4 -5
  32. data/lib/appium_lib_core/common/log.rb +5 -4
  33. data/lib/appium_lib_core/common/wait.rb +38 -6
  34. data/lib/appium_lib_core/device.rb +3 -9
  35. data/lib/appium_lib_core/driver.rb +191 -160
  36. data/lib/appium_lib_core/{patch.rb → element.rb} +64 -26
  37. data/lib/appium_lib_core/ios/xcuitest/device.rb +2 -0
  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/{ios.rb → mac2.rb} +2 -5
  42. data/lib/appium_lib_core/support/event_firing_bridge.rb +57 -0
  43. data/lib/appium_lib_core/version.rb +2 -2
  44. data/lib/appium_lib_core.rb +23 -10
  45. metadata +53 -118
  46. data/.github/ISSUE_TEMPLATE/issue-report.md +0 -29
  47. data/.github/contributing.md +0 -26
  48. data/.github/issue_template.md +0 -20
  49. data/.github/workflows/unittest.yml +0 -68
  50. data/.gitignore +0 -18
  51. data/.rubocop.yml +0 -58
  52. data/azure-pipelines.yml +0 -15
  53. data/ci-jobs/functional/android_setup.yml +0 -3
  54. data/ci-jobs/functional/ios_setup.yml +0 -7
  55. data/ci-jobs/functional/publish_test_result.yml +0 -18
  56. data/ci-jobs/functional/run_appium.yml +0 -25
  57. data/ci-jobs/functional/start-emulator.sh +0 -26
  58. data/ci-jobs/functional_test.yml +0 -298
  59. data/docs/mobile_command.md +0 -34
  60. data/lib/appium_lib_core/common/base/bridge/mjsonwp.rb +0 -81
  61. data/lib/appium_lib_core/common/base/bridge/w3c.rb +0 -252
  62. data/lib/appium_lib_core/common/command/common.rb +0 -110
  63. data/lib/appium_lib_core/common/command/w3c.rb +0 -56
  64. data/lib/appium_lib_core/common/device/value.rb +0 -52
  65. data/lib/appium_lib_core/common/touch_action/multi_touch.rb +0 -56
  66. data/lib/appium_lib_core/common/touch_action/touch_actions.rb +0 -203
  67. data/lib/appium_lib_core/ios/uiautomation/device.rb +0 -44
  68. data/lib/appium_lib_core/ios/uiautomation/patch.rb +0 -34
  69. data/release_notes.md +0 -816
  70. data/script/commands.rb +0 -200
data/CHANGELOG.md CHANGED
@@ -5,68 +5,387 @@ Read `release_notes.md` for commit level details.
5
5
  ## [Unreleased]
6
6
 
7
7
  ### Enhancements
8
- - Ruby 3.0 support
9
8
 
10
9
  ### Bug fixes
11
10
 
12
11
  ### Deprecations
13
12
 
14
- ## [4.1.0] - 2020-12-25
13
+ ## [9.1.1] - 2024-05-19
15
14
 
16
15
  ### Enhancements
17
- - Ruby 3.0 support
16
+ - Simplify internal code with Selenium 4.21.0 further.
17
+
18
+
19
+ ## [9.1.0] - 2024-05-18
20
+
21
+ ### Enhancements
22
+ - Require Selenium 4.21.0+
23
+ - Simplify internal code with Selenium 4.21.0. Now it requires selenium webdriver v4.21.0.
24
+
25
+ ## [9.0.0] - 2024-05-14
26
+
27
+ ### Deprecations
28
+ - Stop converting snake cases to camel case for symbols in capabilities
29
+ - Please define camel/snake cases in capabilities as-is for the WebDriver capabilities
30
+ - Stop implicit symbolizing capabilities
31
+ - Historically ruby_lib/ruby_lib_core symbolized capabilities keys from string internally.
32
+ - `Appium.symbolize_keys` to build symbolized capabilities if issues occurred by this change.
33
+
34
+ ## [8.0.2] - 2024-04-26
35
+
36
+ ### Enhancements
37
+ - Bump thor for publishment module
38
+
39
+ ## [8.0.1] - 2024-03-26
18
40
 
19
41
  ### Bug fixes
42
+ - Do not ignore an empty string/nil values as caps
43
+
44
+
45
+ ## [8.0.0] - 2024-03-08
20
46
 
21
47
  ### Deprecations
48
+ - Removed deprecated methods
49
+ - `launch_app`, `close_app` and `reset`
50
+ - Please use `activate_app`, `terminate_app`, or launch/activate/terminate commands by `mobile:` command
51
+ - `TouchAction`, `MultiTouch`
52
+ - Please refer to W3C WebDriver actions
53
+ - https://www.rubydoc.info/gems/appium_lib_core/Appium/Core/Base/Bridge#action-instance_method
54
+ - `immediate_value` and `replace_value`
55
+ - `end_coverage`
56
+ - `sessions` and `session_capabilities` since they are not W3C WebDriver spec and already removed from the dependent selenium clients.
57
+ - To get events info, please use `driver.logs.events` instead
58
+ - `switch_to_default_context`
59
+ - Please set proper context instead
22
60
 
23
- ## [4.0.0] - 2020-12-19
61
+ ## [7.5.0] - 2024-02-21
62
+ - Remove upper limitation in `selenium-webdriver`
63
+ - Users can control the version in their Gemfile
64
+ - ruby_lib_core will fix when the future release requires changes
24
65
 
25
- Supported Ruby version is 2.4+
66
+ ## [7.4.0] - 2024-01-23
26
67
 
27
- ### Enhancements
68
+ ### Enhancement
69
+ - Bump `selenium-webdriver` max
70
+
71
+ ### Deprecatioons
72
+ - Removed deprecated `core#platform_version` and `core#write_session_id`
73
+ - Please refer to the capabilities' value and `driver.session_id`
74
+
75
+ ## [7.3.2] - 2023-11-08
28
76
 
29
77
  ### Bug fixes
78
+ - Fix default value fo set context
79
+
80
+ ## [7.3.1] - 2023-11-04
81
+ ### Enhancements
82
+ - Bump `selenium-webdriver` max
83
+
84
+ ## [7.3.0] - 2023-10-17
30
85
 
31
86
  ### Deprecations
32
- - No longer work with `forceMjsonwp` capability to force the session MJSONWP
87
+ - Add deprecation marks that will be removed from Appium or this library to move to extension commands such as `mobile:`
88
+ - https://github.com/appium/ruby_lib_core/pull/504
33
89
 
34
- ## [3.11.1] - 2020-11-20
90
+ ## [7.2.0] - 2023-10-13
35
91
 
36
92
  ### Enhancements
93
+ - Append `selenium-webdriver` `4.12` support
37
94
 
38
- ### Bug fixes
39
- - Fix `install_app` to be able to set no args for options
95
+ ## [7.1.1] - 2023-10-01
40
96
 
41
97
  ### Deprecations
42
98
 
43
- ## [3.11.0] - 2020-08-01
99
+ - Add deprecation marks in `immediate_value` and `replace_value`
100
+
101
+ ## [7.1.0] - 2023-08-15
44
102
 
45
103
  ### Enhancements
46
- - Security update [GHSA-2v5c-755p-p4gv](https://github.com/advisories/GHSA-2v5c-755p-p4gv)
47
- - Affects only _::Appium::Core::WebSocket_
104
+ - Append `selenium-webdriver` `4.11` support
105
+
106
+ ## [7.0.0] - 2023-06-17
107
+
108
+ ### Deprecations
109
+
110
+ - Drop Ruby 2.7 support
111
+
112
+ ## [6.5.0] - 2023-06-11
113
+
114
+ ### Enhancements
115
+ - Append `selenium-webdriver` `4.10` support
116
+
117
+ ## [6.4.2] - 2023-06-07
118
+
119
+ ### Enhancements
120
+ - Simplify internal http client implementation a bit
121
+
122
+ ## [6.4.1] - 2023-05-13
48
123
 
49
124
  ### Bug fixes
125
+ - Fixed `driver.execute_cdp` command error in a chrome session
126
+
127
+ ## [6.4.0] - 2023-04-30
128
+
129
+ ### Enhancements
130
+ - Append `selenium-webdriver` `4.9` support
131
+
132
+ ## [6.3.0] - 2023-03-14
133
+
134
+ ### Enhancements
135
+ - Support custom listener
136
+ - e.g. A listener named `CustomListener` which inherits `::Selenium::WebDriver::Support::AbstractEventListener` can set as `appium_lib: { listener: CustomListener.new}` capability
137
+
138
+ ## [6.2.1] - 2023-03-09
139
+
140
+ ### Enhancements
141
+ - Add `uia_device_orientation_landscaperight` and `uia_device_orientation_portrait_upsidedown` symbols in the `drivede.rotation=`
142
+ - Add `drivede.orientation=` as a syntax sugar of `drivede.rotation=`
143
+
144
+
145
+ ## [6.2.0] - 2023-01-26
146
+
147
+ ### Enhancements
148
+
149
+ - Append `selenium-webdriver` `4.8` support
150
+ - Add `::Appium::Location` since `::Selenium::WebDriver::Location` no longer exists
50
151
 
51
152
  ### Deprecations
52
153
 
53
- ## [3.10.1] - 2020-06-29
154
+ - `::Selenium::WebDriver::Location` is deprecated in favor of `::Appium::Location` in Appium Ruby binding
155
+
156
+
157
+ ## [6.1.0] - 2023-01-18
158
+
159
+ ### Bug fixes
160
+ - `Element#immediate_value` sends `text` as the request body
161
+
162
+ ## [6.0.0] - 2022-12-25
163
+ - Remove iOS/UiAutomation classes
164
+ - The version may work for iOS 8. XCUITest driver will be the default behavior for iOS.
165
+
166
+ ## [5.8.0] - 2022-12-11
54
167
 
55
168
  ### Enhancements
169
+ - Add `::Appium::Core::Driver#attach_to` to generate a driver instance which has the given session id.
170
+ - The primary usage is for debugging to attach to an existing session.
171
+
172
+ ## [5.7.0] - 2022-12-02
173
+
174
+ ### Enhancements
175
+ - Allow selenium webdriver version 4.7 [#423](https://github.com/appium/ruby_lib_core/pull/423)
176
+
177
+ ## [5.6.0] - 2022-11-08
178
+
179
+ ### Enhancements
180
+ - Append `selenium-webdriver` `4.6` support
181
+
182
+ ## [5.5.2] - 2022-10-11
56
183
 
57
184
  ### Bug fixes
58
- - Fix duplication warning of `execute_cdp`
185
+ - Fix wrong deprecation message
186
+
187
+ ## [5.5.1] - 2022-10-10
188
+
189
+ ### Bug fixes
190
+ - Keep converting String to Symbol for `capabilities`, `caps` and `appium_lib` for the backward compatibility
191
+ - Wrong `automationName` and `platformName` detection in this library before starting a session
59
192
 
60
193
  ### Deprecations
194
+ - Converting `capabilities`, `caps` and `appium_lib` from String to Symbol
195
+ - They are expected to be Symbol. Nothing affects existing users who already give the above keys as Symbol for `Appium::Core.for`.
61
196
 
62
- ## [3.10.0] - 2020-06-09
197
+ ## [5.5.0] - 2022-10-09
198
+
199
+ ### Bug fixes
200
+ - Removed forcefully converting keys of capabilities into symbol, which caused unexpected capabilities format issue [ruby_lib/945](https://github.com/appium/ruby_lib/issues/945)
201
+
202
+ ## [5.4.0] - 2022-10-01
63
203
 
64
204
  ### Enhancements
65
- - Remove deprecated `Selenium::WebDriver::Error::TimeOutError`
205
+ - Append `selnium-webdriver` `4.5` support
206
+
207
+ ## [5.3.0] - 2022-08-10
208
+
209
+ ### Enhancements
210
+
211
+ - Allow selenium webdriver version 4.4 [#404](https://github.com/appium/ruby_lib_core/pull/404)
212
+
213
+ ## [5.2.2] - 2022-06-26
214
+
215
+ ### Enhancements
216
+ - Relax the selenium webdriver version restriction of `4.2.0`
217
+
218
+ ### Bug fixes
219
+ - Remove undefined module in selenium webdriver version `4.3.0`
220
+
221
+ ## [5.2.1] - 2022-06-24
222
+
223
+ ### Bug fixes
224
+ - Restrict the selenium webdriver version to `4.2.0`
225
+
226
+ ## [5.2.0] - 2022-06-19
227
+
228
+ ### Enhancements
229
+
230
+ - Update base Selenium Ruby client to `4.2+`
231
+ - Please call `key_action` or set `[::Selenium::WebDriver::Interactions.key('keyboard')]` as the deviecs parameter to build `driver.send_keys().perform` W3C action.
232
+ - `driver.key_action.send_keys('xxx').perform` instead of `driver.action.send_keys('xxx').perform`, or `driver.action(devices: [::Selenium::WebDriver::Interactions.key('keyboard')]).send_keys('xxx').perform`.
233
+ - [This PR change](https://github.com/appium/ruby_lib_core/pull/381/files) will help to update your some actions.
234
+
235
+ ## [5.1.2] - 2022-06-02
236
+
237
+ ### Enhancements
238
+
239
+ - Limit selenium webdriver version less than `4.2`
240
+
241
+ ## [5.1.1] - 2022-04-18
242
+
243
+ ### Enhancements
244
+
245
+ - Remove unneccessry files from gem package to reduce the size.
246
+
247
+ ## [5.1.0] - 2021-12-25
248
+
249
+ ### Enhancements
250
+ - Make default pointerType `touch` for the pointer in W3C actions instead of `mouse` for Appium
251
+ - This change should not affect W3C actions
252
+
253
+ ## [5.0.3] - 2021-12-13
254
+
255
+ ### Enhancements
256
+ - Can add more arguments in `install_app`
257
+ - e.g. Add `timeoutMs` for XCUITest driver as `@driver.install_app("/path/to/test.ipa", timeoutMs: 20000)`
66
258
 
67
259
  ### Bug fixes
260
+ - (internal) Allow to access to `bridge` attribute in `driver` instance for appium_flutter_finder
261
+
262
+ ## [5.0.2] - 2021-12-01
263
+
264
+ ### Bug fixes
265
+ - (internal) Fix firstMatch format in a new session creation
266
+
267
+ ## [5.0.1] - 2021-11-23
268
+
269
+ ### Enhancements
270
+ - Relaxed version restriction of selenium-webdriver
271
+
272
+ ## [5.0.0] - 2021-11-05
273
+
274
+ ### Enhancements
275
+
276
+ - Update base selenium webdriver version to `v4`
277
+ - Base Selenium Ruby binding is now v4
278
+ - Support only W3C WebDriver spec (and a few Appium specific commands)
279
+ - Support Ruby 2.6+
280
+ - Add `driver#wait`, `driver#wait_until`, `driver#wait_true`, `driver#wait_until_true` syntaxes
281
+ - Can give `driver` instance as its block variable
282
+ - `element.id` returns the element id instead of `element.ref`.
283
+ - `element.ref` now returns an array.
284
+ - Removed `desired_capabilities` as capabilities for `Appium::Core#for`. Please use `capabilities` key name instead.
285
+ - e.g. `Appium::Core.for capabilities: {...}` instead of `Appium::Core.for desired_capabilities: {...}`
286
+ - Removed methods that had _Deprecated_ mark
287
+ - Removed `driver#screenshot`. Please use `driver#save_screenshot` instead
288
+ - Removed `driver#send_keys` to send keys to an active element. Please use `driver.action.send_keys('happy testing').perform` instead
289
+ - Removed `forceMjsonwp` to send only MJSONWP capabilities since Selenium cleint v4 no longer supports MJSONWP
290
+ - No longer set default `timeouts` as `0`
291
+ - ruby_lib_core calls `/timeouts` endpoint only when `appium_lib: { wait: 5 }` is provided explicitly
292
+ - Raises `::Appium::Core::Error::ArgumentError` instead of `ArgumentError` for this library specific argument errors
293
+ - Removed Selendroid related methods
294
+
295
+ ### Deprecations
296
+ - `Appium::Core::TouchAction` and `Appium::Core::MultiTouch` are deprecated
297
+ - Please use W3C actions instead http://appium.io/docs/en/commands/interactions/actions/
298
+ - More working examples:
299
+ - [test/functional/android/webdriver/w3c_actions_test.rb](test/functional/android/webdriver/w3c_actions_test.rb)
300
+ - [test/functional/ios/webdriver/w3c_actions_test.rb](test/functional/ios/webdriver/w3c_actions_test.rb)
301
+ - [test/functional/common_w3c_actions.rb](test/functional/common_w3c_actions.rb)
302
+ - https://www.selenium.dev/documentation/support_packages/mouse_and_keyboard_actions_in_detail/
303
+ - https://www.youtube.com/watch?v=oAJ7jwMNFVU
304
+ - https://appiumpro.com/editions/30-ios-specific-touch-action-methods
305
+ - https://appiumpro.com/editions/29-automating-complex-gestures-with-the-w3c-actions-api
306
+ - `launch_app`, `close_app` and `reset`. Please read [issues#15807](https://github.com/appium/appium/issues/15807) for more details.
307
+ - `activate_app` or a new session request can be alternatives of `launch_app`
308
+ - `terminate_app` or close the session request can be alternatives of `close_app`
309
+ - Close current session and creating a new session, or `terminate_app` and `launch_app` can be alternatives of `reset`
310
+
311
+ ## [4.7.1] - 2021-09-26
312
+
313
+ ### Enhancements
314
+ - Allow to override an existing method by `Appium::Core::Base::Driver#add_command` since Appium drivers/plugins allow to override them
315
+
316
+ ## [4.7.0] - 2021-07-17
317
+
318
+ ### Enhancements
319
+ - Add `satellites` option in `Appium::Core::Base::Driver#set_location`
320
+
321
+ ## [4.6.0] - 2021-06-03
322
+
323
+ ### Enhancements
324
+ - Add `Appium::Core::Base::Driver#add_command` to allow you to add your own command
325
+
326
+ ## [4.5.0] - 2021-03-14
327
+
328
+ ### Enhancements
329
+ - Add `speed` argument for `Appium::Core::Base::Driver#set_location` since Appium 1.21.0
330
+ - Add `multiple` and `match_neighbour_threshold` arguments for `Appium::Core::Base::Driver#find_image_occurrence`
331
+
332
+ ## [4.4.1(4.4.0)] - 2021-02-15(2021-02-13)
333
+
334
+ ### Enhancements
335
+ - Returns `{}` any errors in `Core#appium_server_version` to prevent errors in some cases
336
+
337
+ ## [4.3.1(4.3.0)] - 2021-02-07(2021-02-05)
338
+
339
+ ### Enhancements
340
+ - Add `start_recording_screen` for Mac2 driver
341
+
342
+ ## [4.2.1] - 2021-01-10
343
+
344
+ ### Enhancements
345
+ - Refactor routable
346
+
347
+ ## [4.2.0] - 2021-01-02
348
+
349
+ ### Enhancements
350
+ - Add `Element#screenshot`, `Element#screenshot_as` and `Element#save_screenshot` in Element module
351
+ - `Element#screenshot_as` and `Element#save_screenshot` are same as `Driver#element_screenshot_as` and `Driver#save_element_screenshot`
352
+ - `Element#screenshot` is same as `Element#screenshot_as(:base64)`
353
+
354
+ ## [4.1.1] - 2020-12-25
355
+
356
+ ### Enhancements
357
+ - Ruby 3.0 support
358
+ - Arguments in `@driver.execute_cdp`
359
+ - It should be like `@driver.execute_cdp 'Page.captureScreenshot', quality: 50, format: 'jpeg'` as keyword arguments
360
+ instead of `@driver.execute_cdp 'Page.captureScreenshot', { quality: 50, format: 'jpeg' }` in Ruby 3
361
+
362
+ ## [4.0.0] - 2020-12-19
363
+
364
+ Supported Ruby version is 2.4+
68
365
 
69
366
  ### Deprecations
367
+ - No longer work with `forceMjsonwp` capability to force the session MJSONWP
368
+
369
+ ## [3.11.1] - 2020-11-20
370
+
371
+ ### Bug fixes
372
+ - Fix `install_app` to be able to set no args for options
373
+
374
+ ## [3.11.0] - 2020-08-01
375
+
376
+ ### Enhancements
377
+ - Security update [GHSA-2v5c-755p-p4gv](https://github.com/advisories/GHSA-2v5c-755p-p4gv)
378
+ - Affects only _::Appium::Core::WebSocket_
379
+
380
+ ## [3.10.1] - 2020-06-29
381
+
382
+ ### Bug fixes
383
+ - Fix duplication warning of `execute_cdp`
384
+
385
+ ## [3.10.0] - 2020-06-09
386
+
387
+ ### Enhancements
388
+ - Remove deprecated `Selenium::WebDriver::Error::TimeOutError`
70
389
 
71
390
  ## [3.9.0] - 2020-05-31
72
391
 
@@ -86,10 +405,6 @@ Supported Ruby version is 2.4+
86
405
  @driver = Appium::Core.for(opts).start_driver
87
406
  ```
88
407
 
89
- ### Bug fixes
90
-
91
- ### Deprecations
92
-
93
408
  ## [3.8.0] - 2020-05-17
94
409
 
95
410
  ### Enhancements
@@ -99,8 +414,6 @@ Supported Ruby version is 2.4+
99
414
  ### Bug fixes
100
415
  - Fix `x-idempotency-key` header to add it only in new session request (https://github.com/appium/ruby_lib_core/issues/262)
101
416
 
102
- ### Deprecations
103
-
104
417
  ## [3.7.0] - 2020-04-18
105
418
 
106
419
  ### Enhancements
@@ -109,76 +422,44 @@ Supported Ruby version is 2.4+
109
422
  - Add chrome devtools endpoint which is available chrome module in Selenium Ruby binding
110
423
  - https://github.com/appium/appium-base-driver/pull/405
111
424
 
112
- ### Bug fixes
113
-
114
- ### Deprecations
115
-
116
425
  ## [3.6.1, 3.6.0] - 2020-03-15
117
426
 
118
427
  ### Enhancements
119
428
  - Add screen record feature for Windows driver (https://github.com/appium/appium-windows-driver/pull/66)
120
429
  - `#start_recording_screen`, `#stop_recording_screen`
121
430
 
122
- ### Bug fixes
123
-
124
- ### Deprecations
125
-
126
431
  ## [3.5.0] - 2020-01-11
127
432
 
128
433
  ### Enhancements
129
434
  - Add `:viewmatcher` selector like `@driver.find_elements :view_matcher, { name: 'withText', args: %w(Accessibility), class: 'androidx.test.espresso.matcher.ViewMatchers' }`
130
435
 
131
- ### Bug fixes
132
-
133
- ### Deprecations
134
-
135
436
  ## [3.4.2] - 2019-12-29
136
437
 
137
438
  ### Enhancements
138
439
  - Add `attr_reader :bridge` for flutter driver not to use `send`
139
440
  - https://github.com/truongsinh/appium-flutter-driver/pull/35
140
441
 
141
- ### Bug fixes
142
-
143
- ### Deprecations
144
-
145
442
  ## [3.4.0, 3.4.1] - 2019-12-26, 2019-12-27
146
443
 
147
444
  ### Enhancements
148
445
  - Fix Ruby 2.7 warnings
149
446
 
150
- ### Bug fixes
151
-
152
- ### Deprecations
153
-
154
447
  ## [3.3.0] - 2019-11-08
155
448
 
156
449
  ### Enhancements
157
450
  - Add `Logs#event` to post a custom log by `@driver.logs.event vendor: 'appium', event: 'funEvent'`
158
451
  - Add `Logs#events` to get events by `@driver.logs.events`. It is equal to `@driver.session_capabilities['events']`
159
452
 
160
- ### Bug fixes
161
-
162
- ### Deprecations
163
-
164
453
  ## [3.2.3] - 2019-09-30
165
454
 
166
455
  ### Enhancements
167
456
  - Add `system_bars` as an alias to `get_system_bars`
168
457
 
169
- ### Bug fixes
170
-
171
- ### Deprecations
172
-
173
458
  ## [3.2.2] - 2019-08-04
174
459
 
175
- ### Enhancements
176
-
177
460
  ### Bug fixes
178
461
  - Fixed parameters of `remove_app`
179
462
 
180
- ### Deprecations
181
-
182
463
  ## [3.2.1] - 2019-07-19
183
464
 
184
465
  ### Enhancements
@@ -200,39 +481,23 @@ Supported Ruby version is 2.4+
200
481
  - Add `execute_driver` to run a batch script
201
482
  - It requires Appium version which has `execute_driver` support
202
483
 
203
- ### Bug fixes
204
-
205
- ### Deprecations
206
-
207
484
  ## [3.1.3] - 2019-06-18
208
485
 
209
486
  ### Enhancements
210
487
  - Add arguments for `start_activity`
211
488
  - `intentAction`, `intentCategory`, `intentFlags`, `dontStopAppOnReset`
212
489
 
213
- ### Bug fixes
214
-
215
- ### Deprecations
216
-
217
490
  ## [3.1.2] - 2019-05-10
218
491
 
219
492
  ### Enhancements
220
493
  - Add `sessions` command to get all available sessions on the Appium server
221
494
  - [internal] Tweak error messages in emulator module
222
495
 
223
- ### Bug fixes
224
-
225
- ### Deprecations
226
-
227
496
  ## [3.1.1] - 2019-04-26
228
497
 
229
498
  ### Enhancements
230
499
  - [internal] Catch `Selenium::WebDriver::Error::TimeoutError` which will be used instead of `Selenium::WebDriver::Error::TimeOutError`
231
500
 
232
- ### Bug fixes
233
-
234
- ### Deprecations
235
-
236
501
  ## [3.1.0] - 2019-03-31
237
502
 
238
503
  ### Enhancements
@@ -240,28 +505,16 @@ Supported Ruby version is 2.4+
240
505
  - `platformName: :tvos, automationName: :xcuitest` can work for iOS tvOS
241
506
  - It requires Appium 1.13
242
507
 
243
- ### Bug fixes
244
-
245
- ### Deprecations
246
-
247
508
  ## [3.0.4] - 2019-03-24
248
509
 
249
510
  ### Enhancements
250
511
  - Add `pixelFormat` argument in screen record for iOS
251
512
 
252
- ### Bug fixes
253
-
254
- ### Deprecations
255
-
256
513
  ## [3.0.3] - 2019-03-11
257
514
 
258
515
  ### Enhancements
259
516
  - [internal] Bump Rubocop target Ruby version to Ruby 2.3
260
517
 
261
- ### Bug fixes
262
-
263
- ### Deprecations
264
-
265
518
  ## [3.0.2] - 2019-03-07
266
519
 
267
520
  ### Enhancements
@@ -271,17 +524,11 @@ Supported Ruby version is 2.4+
271
524
  - [internal] Fixed typo in `Emulator#gsm_signal` [#196](https://github.com/appium/ruby_lib_core/pull/196)
272
525
  - Thanks [khanhdodang](https://github.com/khanhdodang)
273
526
 
274
- ### Deprecations
275
-
276
527
  ## [3.0.1] - 2019-02-25
277
528
 
278
529
  ### Enhancements
279
530
  - Add `:data_matcher` find_element/s attribute [appium-espresso-driver#386](https://github.com/appium/appium-espresso-driver/pull/386)
280
531
 
281
- ### Bug fixes
282
-
283
- ### Deprecations
284
-
285
532
  ## [3.0.0] - 2019-02-06
286
533
 
287
534
  This release has a breaking change about an implicit wait.
@@ -307,8 +554,6 @@ The behaviour follows the default spec in WebDriver.
307
554
  ### Bug fixes
308
555
  - Fix potential override of `AppManagement#background_app` [#188](https://github.com/appium/ruby_lib_core/pull/188)
309
556
 
310
- ### Deprecations
311
-
312
557
  ## [2.3.4] - 2019-01-31
313
558
  ### Enhancements
314
559
  - Add 3D touch option for `TouchAction#press` [appium/WebDriverAgent#79](https://github.com/appium/WebDriverAgent/pull/79)
@@ -317,16 +562,10 @@ The behaviour follows the default spec in WebDriver.
317
562
  ### Bug fixes
318
563
  - Stop sending blank value in `start_activity`
319
564
 
320
- ### Deprecations
321
-
322
565
  ## [2.3.3] - 2019-01-22
323
- ### Enhancements
324
-
325
566
  ### Bug fixes
326
567
  - Add `*args, &block` in method missing in `Selenium::WebDriver::Element` [#184](https://github.com/appium/ruby_lib_core/pull/184)
327
568
 
328
- ### Deprecations
329
-
330
569
  ## [2.3.2] - 2019-01-20
331
570
  ### Enhancements
332
571
  - Add alias for some method calls
@@ -337,18 +576,12 @@ The behaviour follows the default spec in WebDriver.
337
576
  ### Bug fixes
338
577
  - `ServerError` inherits `CoreError` in order to handle it as an exception
339
578
 
340
- ### Deprecations
341
-
342
579
  ## [2.3.1] - 2019-01-13
343
580
  ### Enhancements
344
581
  - `set_network_connection` accepts keys as same as `network_connection_type` in addition to numbers
345
582
  - `{ :airplane_mode: 1, wifi: 2, data: 4, all: 6, none: 0 }`
346
583
  - Read [documentation](https://www.rubydoc.info/github/appium/ruby_lib_core/master/Appium/Core/Android/Device#set_network_connection-instance_method) more
347
584
 
348
- ### Bug fixes
349
-
350
- ### Deprecations
351
-
352
585
  ## [2.3.0] - 2019-01-07
353
586
  ### Enhancements
354
587
  - Use `Base64.strict_encode64` when this client sends `Base64` encoded data to server
@@ -356,33 +589,19 @@ The behaviour follows the default spec in WebDriver.
356
589
  - Continues to decode base 64 data following `decode64` to accept RFC 2045 format
357
590
  - Add `query_app_state` as an alias of `app_state` to get application status
358
591
 
359
- ### Bug fixes
360
-
361
- ### Deprecations
362
-
363
592
  ## [2.2.2] - 2018-12-22
364
593
  ### Enhancements
365
594
  - Append `appium` in header: `appium/ruby_lib_core/2.2.1 (selenium/3.141.0 (ruby macosx))`
366
595
 
367
- ### Bug fixes
368
-
369
- ### Deprecations
370
-
371
596
  ## [2.2.1] - 2018-12-08
372
- ### Enhancements
373
-
374
597
  ### Bug fixes
375
598
  - Reduce warnings for method definitions
376
599
 
377
- ### Deprecations
378
-
379
600
  ## [2.2.0] - 2018-12-01
380
601
  ### Enhancements
381
602
  - Add `::Appium::Core::Base.platform` to call `::Selenium::WebDriver::Platform`
382
603
  - Can identify platform using `::Appium::Core::Base.platform.windows?` for example
383
604
 
384
- ### Bug fixes
385
-
386
605
  ### Deprecations
387
606
  - `:offset_x` and `:offset_y` in `TouchAction#swipe` is deprecated in favor of `:end_x` and `:end_y`
388
607
 
@@ -401,10 +620,6 @@ The behaviour follows the default spec in WebDriver.
401
620
  - Update `start_recording_screen` for iOS, Appium 1.10.0
402
621
  - Add `:video_scale` and update `:video_type`
403
622
 
404
- ### Bug fixes
405
-
406
- ### Deprecations
407
-
408
623
  ## [2.1.0] - 2018-11-14
409
624
  ### Enhancements
410
625
  - Support below style _1_, has _url_ parameter, in addition to style _2_
@@ -417,27 +632,15 @@ The behaviour follows the default spec in WebDriver.
417
632
  ```
418
633
  - Add `:video_fps` param for screen recording in iOS(XCUITest) to sync with Appium 1.10.0
419
634
 
420
- ### Bug fixes
421
-
422
- ### Deprecations
423
-
424
635
  ## [2.0.6] - 2018-11-08
425
636
  ### Enhancements
426
637
  - Allow selenium update following Pi versioning like 3.141.0
427
638
  - [internal] Update dev libraries
428
639
 
429
- ### Bug fixes
430
-
431
- ### Deprecations
432
-
433
640
  ## [2.0.5] - 2018-10-30
434
641
  ### Enhancements
435
642
  - [internal] No longer send `strategy: :tapOutside` as default value in Android
436
643
 
437
- ### Bug fixes
438
-
439
- ### Deprecations
440
-
441
644
  ## [2.0.4] - 2018-10-19
442
645
  ### Enhancements
443
646
  - 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 +650,15 @@ The behaviour follows the default spec in WebDriver.
447
650
 
448
651
  ```
449
652
 
450
- ### Bug fixes
451
-
452
- ### Deprecations
453
-
454
653
  ## [2.0.3] - 2018-10-11
455
654
  ### Enhancements
456
655
  - Set `'selenium-webdriver', '~> 3.14.1'`
457
656
 
458
- ### Bug fixes
459
-
460
- ### Deprecations
461
-
462
657
  ## [2.0.2] - 2018-10-02
463
658
  ### Enhancements
464
659
  - Add finger print feature for Android emulators [#13](https://github.com/appium/ruby_lib_core/issues/13)
465
660
  - Add `keyboard_shown?` and `context=` as aliases of `is_keyboard_shown` and `set_contex`
466
661
 
467
- ### Bug fixes
468
-
469
- ### Deprecations
470
-
471
662
  ## [2.0.1] - 2018-09-01
472
663
  ### Enhancements
473
664
  - Add `Appium::Core::Base::Driver#perform_actions` to send multiple actions. See `test_multiple_actions` as an example.
@@ -475,8 +666,6 @@ The behaviour follows the default spec in WebDriver.
475
666
  ### Bug fixes
476
667
  - Fix desired capability for W3C protocol under selenium grid environment [#137](https://github.com/appium/ruby_lib_core/issues/137)
477
668
 
478
- ### Deprecations
479
-
480
669
  ## [2.0.0] - 2018-08-25
481
670
 
482
671
  This release has a breaking change for creating core. Thus, I've bumped the major version.
@@ -484,20 +673,14 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
484
673
  ### Enhancements
485
674
  - use `autoload` to load Android/iOS modules
486
675
 
487
- ### Bug fixes
488
-
489
676
  ### Deprecations
490
677
  - `@core = Appium::Core.for(self, opts)` is deprecated in favor of `@core = Appium::Core.for(opts)`
491
678
  - Call `extend Appium::Core::Device` if you'd like to extend methods defined in `Appium::Core`
492
679
  - Read [#816](https://github.com/appium/ruby_lib/pull/816) as an example
493
680
 
494
681
  ## [1.9.2] - 2018-08-23
495
- ### Enhancements
496
-
497
682
  ### Bug fixes
498
- - fix unexpedted method missing against `:to_hash` in Element
499
-
500
- ### Deprecations
683
+ - fix unexpected method missing against `:to_hash` in Element
501
684
 
502
685
  ## [1.9.1] - 2018-08-20
503
686
  ### Enhancements
@@ -507,8 +690,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
507
690
  ### Bug fixes
508
691
  - [internal] Fix raising error in `set_implicit_wait_by_default` [#130](https://github.com/appium/ruby_lib_core/issues/130)
509
692
 
510
- ### Deprecations
511
-
512
693
  ## [1.9.0] - 2018-08-05
513
694
  ### Enhancements
514
695
  - Update documentation about `start_recording_screen`
@@ -516,8 +697,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
516
697
  - Support `find_element/s :image, partial_image` [#119](https://github.com/appium/ruby_lib_core/pull/119)
517
698
  - Requires `selenium-webdriver 3.14+` because of W3C actions [#115](https://github.com/appium/ruby_lib_core/pull/115)
518
699
 
519
- ### Bug fixes
520
-
521
700
  ### Deprecations
522
701
  - [Internal] Deprecate experimental `ImageElement` in favor of `Element`
523
702
 
@@ -527,10 +706,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
527
706
  - 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
707
  - Set `'~> 3.5', '< 3.14'`
529
708
 
530
- ### Bug fixes
531
-
532
- ### Deprecations
533
-
534
709
  ## [1.8.3] - 2018-07-20
535
710
  ### Enhancements
536
711
  - Relax the logic of `:app` capability
@@ -538,11 +713,7 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
538
713
  ### Bug fixes
539
714
  - Fix `within_context`
540
715
 
541
- ### Deprecations
542
-
543
716
  ## [1.8.2] - 2018-07-17
544
- ### Enhancements
545
-
546
717
  ### Bug fixes
547
718
  - Available packages over HTTP [#106](https://github.com/appium/ruby_lib_core/issues/106)
548
719
 
@@ -550,23 +721,15 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
550
721
  - Remove warning of camelCase capability for W3C format
551
722
 
552
723
  ## [1.8.1] - 2018-07-13
553
- ### Enhancements
554
-
555
724
  ### Bug fixes
556
725
  - Fix including search context in `::Selenium::WebDriver::Elemenet`
557
726
  - `include ::Appium::Core::Base::SearchContext` instead of `::Selenium::WebDriver::SearchContext`
558
727
 
559
- ### Deprecations
560
-
561
728
  ## [1.8.0] - 2018-07-07
562
729
  ### Enhancements
563
730
  - Add Tizen case
564
731
  - [Internal] reduce method definition by `add_endpoint_method`
565
732
 
566
- ### Bug fixes
567
-
568
- ### Deprecations
569
-
570
733
  ## [1.7.2] - 2018-06-23
571
734
  ### Enhancements
572
735
  - Add `find_element_by_image` and `find_elements_by_image` to handle `ImageElement`
@@ -575,10 +738,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
575
738
  - Experimental feature
576
739
  - [Internal] Define screenshot methods in appium_lib_core instead of Selenium's one
577
740
 
578
- ### Bug fixes
579
-
580
- ### Deprecations
581
-
582
741
  ## [1.7.1] - 2018-06-15
583
742
  ### Enhancements
584
743
  - Add a `format` argument for `device_time` [#94](https://github.com/appium/ruby_lib_core/pull/94)
@@ -586,8 +745,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
586
745
  ### Bug fixes
587
746
  - Return empty array `[]` for find_elements
588
747
 
589
- ### Deprecations
590
-
591
748
  ## [1.7.0] - 2018-05-28
592
749
  ### Enhancements
593
750
  - Has one **Breaking Change**
@@ -600,10 +757,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
600
757
  - [Internal] Change directory and file structure
601
758
  - [Internal] Set default content-type
602
759
 
603
- ### Bug fixes
604
-
605
- ### Deprecations
606
-
607
760
  ## [1.6.0] - 2018-05-08
608
761
  ### Enhancements
609
762
  - **Breaking Change**
@@ -615,36 +768,22 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
615
768
  - add `battery_info` to get battery information
616
769
  - add `is_keyboard_shown` for iOS ( see also https://github.com/appium/appium-xcuitest-driver/pull/664/files )
617
770
 
618
- ### Bug fixes
619
-
620
- ### Deprecations
621
-
622
771
  ## [1.5.1] - 2018-04-25
623
- ### Enhancements
624
-
625
772
  ### Bug fixes
626
773
  - Revert timeout logic in `1.4.1`
627
774
 
628
- ### Deprecations
629
-
630
775
  ## [1.5.0] - 2018-04-25
631
776
  ### Enhancements
632
777
  - [internal] Remove hot fix for XCUITest action
633
778
 
634
- ### Bug fixes
635
-
636
779
  ### Deprecations
637
780
  - Changed the name of arguments
638
781
  - `swipe(start_x:, start_y:, end_x:, end_y:)` instead of `swipe(start_x:, start_y:, offset_x:, offset_y:)`
639
782
 
640
783
  ## [1.4.2] - 2018-04-22
641
- ### Enhancements
642
-
643
784
  ### Bug fixes
644
785
  - Revert `delegate_from_appium_driver` for `ruby_lib` compatibility
645
786
 
646
- ### Deprecations
647
-
648
787
  ## [1.4.1] - 2018-04-22
649
788
  ### Enhancements
650
789
  - add base image comparison
@@ -653,54 +792,30 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
653
792
  - Raise `::Appium::Core::Wait::TimeoutError` instead of `::Selenium::WebDriver::Error::TimeOutError`
654
793
  - [internal] Separate mjsonwp commands module and w3c commands module from one command module
655
794
 
656
- ### Bug fixes
657
-
658
- ### Deprecations
659
-
660
795
  ## [1.4.0] - 2018-04-15
661
796
  ### Enhancements
662
797
  - Add a support for WebSocket client based on Faye::WebSocket::Client [#74](https://github.com/appium/ruby_lib_core/pull/74)
663
798
 
664
- ### Bug fixes
665
-
666
- ### Deprecations
667
-
668
799
  ## [1.3.8] - 2018-04-12
669
800
  ### Enhancements
670
801
  - Make no-argument commands friendly for IDE
671
802
 
672
- ### Bug fixes
673
-
674
- ### Deprecations
675
-
676
803
  ## [1.3.7] - 2018-04-02
677
804
  ### Enhancements
678
805
  - Only for `ruby_lib_core` internal process
679
806
  - Remove `touch` action by default and following `selenium-webdriver` in W3C action.
680
807
  - Since XCUITest and UA2 drivers force handling the pointer as `touch`.
681
808
 
682
- ### Bug fixes
683
-
684
- ### Deprecations
685
-
686
809
  ## [1.3.6] - 2018-04-01
687
810
  ### Enhancements
688
811
  - Be able to change `kind` in W3C touch action.
689
812
  - Read: https://github.com/appium/ruby_lib_core/blob/master/lib/appium_lib_core/common/base/bridge/w3c.rb#L29
690
813
 
691
- ### Bug fixes
692
-
693
- ### Deprecations
694
-
695
814
  ## [1.3.5] - 2018-03-30
696
815
  ### Enhancements
697
816
  - Add a `bug_report` option in `start_recording_screen`, Android
698
817
  - Add clipboard apis [#69](https://github.com/appium/ruby_lib_core/pull/69)
699
818
 
700
- ### Bug fixes
701
-
702
- ### Deprecations
703
-
704
819
  ## [1.3.4] - 2018-03-21
705
820
  ### Enhancements
706
821
  - Add `save_viewport_screenshot` which get screenshot except for status bar.
@@ -710,16 +825,10 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
710
825
  ### Bug fixes
711
826
  - 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
827
 
713
- ### Deprecations
714
-
715
828
  ## [1.3.3] - 2018-03-03
716
829
  ### Enhancements
717
830
  - add `session_capabilities`: https://appium.io/docs/en/commands/session/get/
718
831
 
719
- ### Bug fixes
720
-
721
- ### Deprecations
722
-
723
832
  ## [1.3.2] - 2018-02-18
724
833
  ### Enhancements
725
834
  - Add Android emulator commands
@@ -727,10 +836,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
727
836
  - Add toggles
728
837
  - `toggle_location_services`, `toggle_wifi`, `toggle_data`
729
838
 
730
- ### Bug fixes
731
-
732
- ### Deprecations
733
-
734
839
  ## [1.3.1] - 2018-02-14
735
840
  ### Enhancements
736
841
  - add some app management commands [#58](https://github.com/appium/ruby_lib_core/pull/58)
@@ -752,10 +857,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
752
857
  .perform
753
858
  ```
754
859
 
755
- ### Bug fixes
756
-
757
- ### Deprecations
758
-
759
860
  ## [1.3.0] - 2018-01-28
760
861
  ### Enhancements
761
862
  - `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 +864,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
763
864
  - `start_recording_screen`
764
865
  - The argument, `file_path`, was removed.
765
866
 
766
- ### Bug fixes
767
-
768
- ### Deprecations
769
-
770
867
  ## [1.2.7] - 2018-01-25
771
868
  ### Enhancements
772
869
  - Print warning messages to use camelCase if capability key names are snake_case
@@ -775,8 +872,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
775
872
  ### Bug fixes
776
873
  - Make `@driver.automation_name` downcase [#50](https://github.com/appium/ruby_lib_core/issues/50)
777
874
 
778
- ### Deprecations
779
-
780
875
  ## [1.2.6] - 2018-01-21
781
876
  ### Enhancements
782
877
  - Add `window_rect`
@@ -784,17 +879,11 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
784
879
  ### Bug fixes
785
880
  - 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
881
 
787
- ### Deprecations
788
-
789
882
  ## [1.2.5] - 2018-01-13
790
883
  ### Enhancements
791
884
  - Enhance W3C support
792
885
  - Timeout related methods
793
886
 
794
- ### Bug fixes
795
-
796
- ### Deprecations
797
-
798
887
  ## [1.2.4] - 2018-01-03
799
888
  ### Enhancements
800
889
  - Refactor `create_session` in `Appium::Core::Base::Bridge`
@@ -806,34 +895,18 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
806
895
  - Read `lib/appium_lib_core/common/base/w3c_bridge.rb` for more details
807
896
  - Can get logs like `driver.logs.available_types` and `driver.logs.get`
808
897
 
809
- ### Bug fixes
810
-
811
- ### Deprecations
812
-
813
898
  ## [1.2.3] - 2017-12-27
814
- ### Enhancements
815
-
816
899
  ### Bug fixes
817
900
  - Fix some w3c methods to work with Appium part 2 [#38](https://github.com/appium/ruby_lib_core/pull/38)
818
901
 
819
- ### Deprecations
820
-
821
902
  ## [1.2.2] - 2017-12-25
822
- ### Enhancements
823
-
824
903
  ### Bug fixes
825
904
  - Fix some w3c methods to work with Appium [#37](https://github.com/appium/ruby_lib_core/pull/37)
826
905
 
827
- ### Deprecations
828
-
829
906
  ## [1.2.1] - 2017-12-23
830
907
  ### Enhancements
831
908
  - override default duration to make some action fast [#36](https://github.com/appium/ruby_lib_core/pull/36)
832
909
 
833
- ### Bug fixes
834
-
835
- ### Deprecations
836
-
837
910
  ## [1.2.0] - 2017-12-23
838
911
  ### Enhancements
839
912
  - Append `appium:` prefix for capabilities automatically due to W3C format.
@@ -842,10 +915,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
842
915
  - IME related
843
916
  - Touch actions based on W3C spec
844
917
 
845
- ### Bug fixes
846
-
847
- ### Deprecations
848
-
849
918
  ## [1.1.0] - 2017-12-16
850
919
  ### Enhancements
851
920
  - Add guidelines in `.github`
@@ -854,8 +923,6 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
854
923
  ### Bug fixes
855
924
  - fix creating sessions [#31](https://github.com/appium/ruby_lib_core/pull/31) for W3C creating sessions
856
925
 
857
- ### Deprecations
858
-
859
926
  ## [1.0.0] - 2017-11-12
860
927
 
861
928
  Initial release