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