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