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