eyes_appium 5.0.0 → 6.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +504 -0
- data/Rakefile +39 -0
- data/eyes_appium.gemspec +30 -0
- data/lib/applitools/appium/eyes.rb +8 -1
- data/lib/applitools/eyes_appium/version.rb +8 -0
- data/lib/eyes_appium.rb +5 -1
- metadata +9 -6
- data/lib/applitools/version.rb +0 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f795461bd8d800aa9656f1cee46cc36397a9d3cf9d55ab2d1c8f1cbae97b86d2
|
4
|
+
data.tar.gz: b2f40f41253e6e524a9559e1ef4ca44647599b1c3ed28d6e40bac48e645b4cf7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 484a46b8147bdc9bab292ebac48239318cf9958f8fd0a153f9e07442f24a51520f4e775120e62afe3cdfc41f08319ef41a1cf6cc158b42a09ab9343cd4fe5e97
|
7
|
+
data.tar.gz: 741f2364becce5d8755f0ecde8de4cc7beac2d08e34d89cf908b4096231cfb1876172b4d2a77223d27b09ef99592d2934088c75c3b5e52d027dc0a9d3ff4ff68
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,504 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [6.0.0] (2023-12-13)
|
4
|
+
|
5
|
+
### Dependencies
|
6
|
+
|
7
|
+
### Breaking Changes:
|
8
|
+
* #### Features
|
9
|
+
* Update version of Universal SDK Core to v4
|
10
|
+
|
11
|
+
* #### Added
|
12
|
+
* new api eyes.get_results to get results
|
13
|
+
|
14
|
+
* #### Removed
|
15
|
+
* eyes.checks now returns nil (added new eyes.get_results to get a results)
|
16
|
+
|
17
|
+
### Features
|
18
|
+
* added notification about outdated sdk version
|
19
|
+
* log driver environment info to splank
|
20
|
+
* show aborted tests in Eyes dashboard
|
21
|
+
* allowed running multiple classic test with different devices for applitoolsified native apps
|
22
|
+
* add more logs for tunnel worker
|
23
|
+
* added warning when driver used with capabilities that may conflict with applitools lib workflow
|
24
|
+
### Bug Fixes
|
25
|
+
* fix custom sequence_name in BatchInfo
|
26
|
+
* suppport coded regions with layoutBreakpoints reload
|
27
|
+
* update dom-snapshot to support xml pages and parens inside css URLs
|
28
|
+
* upgrade dom-capture to get font-family in DOM
|
29
|
+
* change expiration time of the tunnel
|
30
|
+
* async cache should wait for upload
|
31
|
+
* async cache race condition
|
32
|
+
* allow css scrolling when taking screenshot of the webview
|
33
|
+
* generate safe selectors as close as possible to taking dom snapshot
|
34
|
+
* added retries on ufg requests that respond with 503 status code
|
35
|
+
* fix incorrect stitchMode mapping in checkSettings
|
36
|
+
* handled duplicated style properties in inline style tags
|
37
|
+
* fixed issue that caused dom snapshots to be taken for different viewport sizes when layout breakpoints were explicitly turned off
|
38
|
+
* remove some connection timeout in case of a long running tasks
|
39
|
+
* return result when error in the ufg
|
40
|
+
* send devtool commands in chromium
|
41
|
+
* preserve css declarations order in dom-snapshot
|
42
|
+
* do not block concurrency when server response is 503
|
43
|
+
### Code Refactoring
|
44
|
+
* reorganized code between gems
|
45
|
+
|
46
|
+
## [5.0.0] - 2023-07-11
|
47
|
+
### Breaking Changes:
|
48
|
+
- get_all_test_results return TestResultSummary with additional info
|
49
|
+
- TestResults Array now in get_all_test_results.results or can be accessed old-style with get_all_test_results[0]
|
50
|
+
- eyes.close always return first result, even when have failed check
|
51
|
+
- eyes.abort on closed/aborted eye now return nil
|
52
|
+
### Added
|
53
|
+
- Add support for reloading the page when using layout_breakpoints
|
54
|
+
- add errors to TestResults
|
55
|
+
### Updated
|
56
|
+
- Update version of Universal SDK Core to 3.6.0
|
57
|
+
### Features
|
58
|
+
- ability to skip deserialize dom snapshot
|
59
|
+
- prevent animated gif images from playing in ufg
|
60
|
+
- support custom property per renderer
|
61
|
+
### Bug fixes
|
62
|
+
- fixed issue that caused creation of unnecessary tunnels
|
63
|
+
- start tunnels with proper regional server
|
64
|
+
## [4.6.3] - 2023-07-04
|
65
|
+
### Updated
|
66
|
+
- Update version of Universal SDK Core to 3.4.0
|
67
|
+
### Added
|
68
|
+
- Add api for mobile (set_nmg_capabilities, set_mobile_capabilities, use_system_screenshot)
|
69
|
+
### Features
|
70
|
+
- Drop support of legacy vhs extraction
|
71
|
+
- Add an API to send logEvents
|
72
|
+
- Add support for reloading the page when using layoutBreakpoints
|
73
|
+
- Fixed issue with failed find element responses in EC
|
74
|
+
- Fixed issue when on certain browser versions test didn't target a previously created baseline
|
75
|
+
- added a new mode for taking native app screenshots
|
76
|
+
### Bug fixes
|
77
|
+
- Increase timeout for rendering results polling
|
78
|
+
- Fixed issue when logs are not show up
|
79
|
+
- Add isProcess property when calling makeCoreServer
|
80
|
+
- Fixed issue with Safari mobile screenshots
|
81
|
+
- Fixed issue with default settings in extractText
|
82
|
+
- Fixed issue with viewport information extraction when switched to webview
|
83
|
+
- apply default scrolling mode
|
84
|
+
## [4.6.2] - 2023-05-10
|
85
|
+
### Added
|
86
|
+
- Add remove_duplicate_tests option & set_remove_duplicate_tests method to eyes runner
|
87
|
+
### Updated
|
88
|
+
- Update version of Universal SDK Core to 2.5.8
|
89
|
+
### Features
|
90
|
+
- Added functional session feature
|
91
|
+
- Add a timeout and max concurrency for fetching resources
|
92
|
+
### Bug fixes
|
93
|
+
- Fixed issue in dom snapshot that prevented urls that start with a whitespace to be mapped
|
94
|
+
- Improved appium prefixed capabilities parsing
|
95
|
+
- Fix issue when locate return wrong type of the region, with left and top properties instead of x and y
|
96
|
+
- Fixed issue with when webview were wasn't recognized as web compatible world
|
97
|
+
- Fixed the issue with session metadata extraction
|
98
|
+
- Fixed functional test feature issues in ec client
|
99
|
+
- Fixed typo in ec custom property
|
100
|
+
- Fixed issue with hanging requests
|
101
|
+
- Fixed platform name formatting
|
102
|
+
- Prevented driver metadata extraction during check in ufg eyes
|
103
|
+
- Fixed dynamic import issue in universal binaries
|
104
|
+
- Fixed detection of emulated mobile drivers
|
105
|
+
- Remove 'Execution Cloud' custom property
|
106
|
+
## [4.6.1] - 2023-04-12
|
107
|
+
### Changed
|
108
|
+
- Packaging server core inside eyes_universal
|
109
|
+
### Updated
|
110
|
+
- Update version of Universal SDK Core to 2.4.8
|
111
|
+
### Features
|
112
|
+
- Added removeDuplicateTests property to the GetManagerResultsSettings
|
113
|
+
- Changed makeManager api to accept settings
|
114
|
+
- Improved extraction of nml element
|
115
|
+
- Update broker url using last response instead of using driver
|
116
|
+
### Bug fixes
|
117
|
+
- Fixed screenshot framing
|
118
|
+
- Fixed issue with css fetching for dom capture
|
119
|
+
- Fixed issue with emulation driver detection
|
120
|
+
- Fixed relative url resolution in css files
|
121
|
+
- Added timeout to css fetching during preparing dom capture
|
122
|
+
- Improve performance in DOM snapshot
|
123
|
+
- Fixed retry interval during poll requests to eyes back-end
|
124
|
+
- Fixed issue with concurrency of the renders in ufg mode
|
125
|
+
- Fixed issue with concurrency of the renders in ufg mode
|
126
|
+
- Fixed ufg concurrency regression
|
127
|
+
- Replaced broker url cache with nml element cache
|
128
|
+
- Fixed selector transformation for scroll root elements for ufg
|
129
|
+
- Upgrade tunnel version
|
130
|
+
## [4.6.0] - 2023-03-06
|
131
|
+
### Changed
|
132
|
+
- change server package to @applitools/core
|
133
|
+
### Updated
|
134
|
+
- Improve logging in core server
|
135
|
+
- Passing density metric for PPI support in the sdk
|
136
|
+
### Added
|
137
|
+
- Integrate universal protocol to run core via transport
|
138
|
+
- Added Resize stitch mode value
|
139
|
+
- Add NML support for Android
|
140
|
+
- Add makeECClient api
|
141
|
+
### Bug fixes
|
142
|
+
- upgrade dom-snapshot with a fix to CSP
|
143
|
+
- Fixed issue when .visualgrid was not added to agent id
|
144
|
+
- Fixed issue with aborting ufg tests
|
145
|
+
## [4.5.5] - 2023-01-06
|
146
|
+
### Updated
|
147
|
+
- Update version of Universal SDK to 3.2.2
|
148
|
+
## [4.5.4] - 2023-01-04
|
149
|
+
### Updated
|
150
|
+
- Update version of Universal SDK to 3.2.1
|
151
|
+
- Update arm64-darwin server recognition
|
152
|
+
### Features
|
153
|
+
- Filter styles and resources with non-screen media queries
|
154
|
+
### Bug fixes
|
155
|
+
- Fixed issue with parsing capabilities for iOS with native app
|
156
|
+
## [4.5.3] - 2022-12-30
|
157
|
+
### Fixed
|
158
|
+
- skip yanked gem versions
|
159
|
+
## [4.5.2] - 2022-12-30
|
160
|
+
### Updated
|
161
|
+
- Update version of Universal SDK to 3.2.0
|
162
|
+
### Added
|
163
|
+
- Add dont_close_batches flag to eyes [Trello 3093](https://trello.com/c/3E0ilb0A)
|
164
|
+
### Features
|
165
|
+
- Add server support for arm
|
166
|
+
- Additional internal event logs
|
167
|
+
### Bug fixes
|
168
|
+
- Fixed OCR functionality with latest eyes server
|
169
|
+
- Fixed issue when helper lib inputs were not cleaned up before calling new command
|
170
|
+
- Fixed issue with element scroll position not being restored after screenshot is taken on native platforms
|
171
|
+
- Handed error during polling in long requests to eyes server
|
172
|
+
- Handle fake shadowRoot with UFG
|
173
|
+
## [4.5.1] - 2022-11-28
|
174
|
+
### Fixed
|
175
|
+
- releasing as stable all eyes
|
176
|
+
## [4.0.0.alpha-eyes-images] - 2022-11-28
|
177
|
+
### Added
|
178
|
+
- eyes_images updated to universal server sdk(v3)
|
179
|
+
### Deprecated (eyes_images)
|
180
|
+
- eyes_images inputs Applitools::Screenshot and ChunkyPNG::Image now are image_path and image (examples in spec/images/eyes_images_functional_spec.rb)
|
181
|
+
### Added (eyes_images)
|
182
|
+
- eyes_images: Applitools::MatchLevel::IGNORE_COLORS
|
183
|
+
## [4.5.0.alpha] - 2022-11-23
|
184
|
+
- Update version of Universal SDK to v3 (sdk: 3.0.2)
|
185
|
+
## [4.4.1] - 2022-10-03
|
186
|
+
### Added
|
187
|
+
- Added iPhone 14 and iPhone 14 Pro Max devices [Trello 73](https://trello.com/c/M1YiwtHb)
|
188
|
+
## [4.4.0] - 2022-09-16
|
189
|
+
### Updated
|
190
|
+
- Update version of Universal SDK to 2.12.3
|
191
|
+
### Added
|
192
|
+
- Created testing client for eyes-universal
|
193
|
+
### Fixed
|
194
|
+
- Using lazyLoad.waitingTime as a delay between stitches by default
|
195
|
+
- Using proxy while polling for the result of the nml command
|
196
|
+
## [4.3.0] - 2022-09-16
|
197
|
+
### Updated
|
198
|
+
- Update version of Universal SDK to 2.12.0
|
199
|
+
### Added
|
200
|
+
- Add proxy support when using NML for NMG
|
201
|
+
- Add NML NMG support for iOS
|
202
|
+
- Added support for lazy loading views in android native apps
|
203
|
+
- tests for alpine
|
204
|
+
### Fixed
|
205
|
+
- Sending correct commands with android helper lib
|
206
|
+
- Fixed issue that prevented NMG from working when NML was enabled
|
207
|
+
## [4.2.0] - 2022-09-05
|
208
|
+
### Removed
|
209
|
+
- removed device name Galaxy S8, S8 Plus, Note 8
|
210
|
+
## [4.1.4] - 2022-09-02
|
211
|
+
### Updated
|
212
|
+
- Update version of Universal SDK to 2.10.8
|
213
|
+
### Changed
|
214
|
+
- U-SDK server spawn once per process
|
215
|
+
- U-SDK server shutdown-mode changed
|
216
|
+
## [4.1.4.alpha] - 2022-08-15
|
217
|
+
### Updated
|
218
|
+
- Update version of Universal SDK to 2.10.5
|
219
|
+
### Changed
|
220
|
+
- ci moved to github
|
221
|
+
## [4.1.3] - 2022-08-04
|
222
|
+
### Added
|
223
|
+
- add enum for edge-2 (EDGE_CHROMIUM_TWO_VERSIONS_BACK)
|
224
|
+
- Android 12 device name [Trello 54](https://trello.com/c/SZAPDKSI)
|
225
|
+
### Updated
|
226
|
+
- Update version of Universal SDK to 2.10.3
|
227
|
+
## [4.1.2] - 2022-07-07
|
228
|
+
### Added
|
229
|
+
- add padding support for regions [Trello 2929](https://trello.com/c/kHbnEdC7), [Trello 42](https://trello.com/c/PYKqJLbg)
|
230
|
+
- add custom region id support for regions [Trello 47](https://trello.com/c/pv51sCYA)
|
231
|
+
### Updated
|
232
|
+
- Update version of Universal SDK to 2.9.5
|
233
|
+
### Fixed
|
234
|
+
- fix freeze in communication with universal server
|
235
|
+
- fix floating region bounds option(as 4 numbers) parsing
|
236
|
+
## [4.1.1] - 2022-06-16
|
237
|
+
### Added
|
238
|
+
- add support lazy loading as part of the check-api [Trello](https://trello.com/c/BIHFMhVk)
|
239
|
+
### Updated
|
240
|
+
- Update version of Universal SDK to 2.8.0
|
241
|
+
## [4.1.0] - 2022-06-16
|
242
|
+
### Removed
|
243
|
+
- alpha flag from version number
|
244
|
+
## [4.1.0.alpha] - 2022-06-13
|
245
|
+
### Updated
|
246
|
+
- Update version of Universal SDK to 2.7.2
|
247
|
+
## Removed
|
248
|
+
- removed eventmachine from eyes_core
|
249
|
+
## [4.0.5.4] - 2022-06-10
|
250
|
+
### Updated
|
251
|
+
- Update version of Universal SDK to 2.7.1
|
252
|
+
### Fixed
|
253
|
+
- Fix default boolean field transition to server(like full page screenshot)
|
254
|
+
## [4.0.5.3] - 2022-06-02
|
255
|
+
### Updated
|
256
|
+
- Update version of Universal SDK to 2.5.19
|
257
|
+
### Fixed
|
258
|
+
- fix ruby-3.1 installation collision
|
259
|
+
## [4.0.5.2] - 2022-05-24
|
260
|
+
### Updated
|
261
|
+
- Update version of Universal SDK to 2.5.17
|
262
|
+
### Fixed
|
263
|
+
- Fix closing batches with closeManager
|
264
|
+
## Removed
|
265
|
+
- removed nokogiri frozen version
|
266
|
+
- remove old&unused js(now processed by universal server)
|
267
|
+
## [4.0.5.1] - 2022-05-18
|
268
|
+
### Fixed
|
269
|
+
- Fix wrong gem yank
|
270
|
+
## [4.0.5] - 2022-05-18
|
271
|
+
### Updated
|
272
|
+
- Update version of Universal SDK to 2.5.11
|
273
|
+
### Fixed
|
274
|
+
- Fix for default notify_on_completion value(moved to universal server)
|
275
|
+
## [4.0.4] - 2022-05-13
|
276
|
+
### Fixed
|
277
|
+
- Fix for mingw
|
278
|
+
## [4.0.3] - 2022-05-13
|
279
|
+
### Updated
|
280
|
+
- Update version of Universal SDK to 2.5.7
|
281
|
+
### Added
|
282
|
+
- added api: wait_before_capture, page_id
|
283
|
+
- api for native ufg: add_mobile_device, add_mobile_devices
|
284
|
+
- new ios devices
|
285
|
+
- AndroidDeviceName and AndroidDeviceInfo
|
286
|
+
### Fixed
|
287
|
+
- Fix installing universal server issues on windows
|
288
|
+
- fix getting connection info for universal server on ci
|
289
|
+
## Removed
|
290
|
+
- png processing lib dependecies
|
291
|
+
## [4.0.2] - 2022-02-08
|
292
|
+
### Updated
|
293
|
+
- Update version of Universal SDK to 1.0.9
|
294
|
+
### Fixed
|
295
|
+
- Fix installing issues with latest ruby version and installing on windows
|
296
|
+
## [4.0.1] - 2022-02-08 - unreleased
|
297
|
+
### Updated
|
298
|
+
- Update version of Universal SDK to 1.0.7
|
299
|
+
## [4.0.0] - 2022-01-24
|
300
|
+
### Changed
|
301
|
+
- Library is now based on Universal SDK
|
302
|
+
## [3.18.4] - 2021-08-31
|
303
|
+
### Fixed
|
304
|
+
- Fix Appium runner option [Trello 2697](https://trello.com/c/F6dLF1VF)
|
305
|
+
- Fix parsing css transition [Trello 2647](https://trello.com/c/CIzoKPNY)
|
306
|
+
- Fix require warning: No such file or directory @ dir_chdir - lib/applitools/selenium/scripts/node_modules [Trello 2148](https://trello.com/c/j5sAPSBa)
|
307
|
+
## [3.18.3] - 2021-06-24
|
308
|
+
### Added
|
309
|
+
- Support cross origin iframes in UFG [Trello 2259](https://trello.com/c/iJKPvd75), [Trello 2584](https://trello.com/c/QyLzmnGl)
|
310
|
+
## [3.18.2] - 2021-05-05
|
311
|
+
### Added
|
312
|
+
- Support variation_group_id and agentRunId [Trello 2527](https://trello.com/c/6SyxJXVZ)
|
313
|
+
## [3.18.1] - 2021-04-28
|
314
|
+
### Added
|
315
|
+
- Allow defining custom properties at the batch level [Trello 2445](https://trello.com/c/IKTydXLv)
|
316
|
+
## [3.18.0] - 2021-04-20
|
317
|
+
### Fixed
|
318
|
+
- Fix Selenium and Appium libraries conflict [Trello 2500](https://trello.com/c/UOwzI2s8)
|
319
|
+
## Deprecated
|
320
|
+
- Ruby 1.9 support for Appium lib (Requirement 2.2+)
|
321
|
+
## [3.17.23] - 2021-01-22
|
322
|
+
### Fixed
|
323
|
+
- Fix viewport rect of a native app at some android devices [Trello 2079](https://trello.com/c/sQJLgtUL)
|
324
|
+
### Updated
|
325
|
+
- Update Ruby Coverege Tests to v2
|
326
|
+
## [3.17.22] - 2021-01-12
|
327
|
+
### Added
|
328
|
+
- Supporting check full element with ufg [Trello 2145](https://trello.com/c/8tPAnz66)
|
329
|
+
### Updated
|
330
|
+
- Supporting iPhone 12 in `IosDeviceName` class. [Trello 2269](https://trello.com/c/yWFy2pRE)
|
331
|
+
### Fixed
|
332
|
+
- Restart on calling eyes.open with started driver [Trello 2162](https://trello.com/c/1SCQUUnW), [Trello 2233](https://trello.com/c/yPY3jhjW)
|
333
|
+
## [3.17.21] - 2020-08-20
|
334
|
+
### added
|
335
|
+
- UFG: the ability to set :visual_grid_options for the UFG SDK (Both globally and through the fluent interface) [Trello_2089](https://trello.com/c/d4zggQes/2089-ufg-sdks-visualgridoptionspolyfilladoptedstylesheets)
|
336
|
+
## [3.17.20] - 2020-08-20
|
337
|
+
### fixed
|
338
|
+
- Skip resources list: the errorStatusCode is passed to the server for UFG resources (if present) [Trello_2101](https://trello.com/c/vw3Ag8eO/2101-sdk-doesnt-pass-errorstatuscode-for-ufg-resources-if-an-error-occurred)
|
339
|
+
## [3.17.19] - 2020-08-18
|
340
|
+
### Updated
|
341
|
+
- Skip resources list for UFG is implemented [Trello_1974](https://trello.com/c/44xq8dze/1974-dom-snapshot-should-accept-a-skip-list-for-fetched-resources)
|
342
|
+
## [3.17.18] - 2020-08-01
|
343
|
+
### Fixed
|
344
|
+
- appium region screenshot issue [Trello_1996](https://trello.com/c/bmD4fCbs/1996-appium-native-ruby-error-with-png-signature-for-targetregion)
|
345
|
+
## [3.17.17] - 2020-07-29
|
346
|
+
### Fixed
|
347
|
+
- The availability to set :notify_on_completion manually for Applitools::BatchInfo. [Trello_2012](https://trello.com/c/OdYXtkFI/2012-batch-sequence-and-batch-notifications-are-not-working-in-the-ruby-selenium-sdk)
|
348
|
+
### Updated
|
349
|
+
- Screenshot retry mechanism is now more efficient. [Trello 1866](https://trello.com/c/KyxkI6Bu)
|
350
|
+
## [3.17.16] - 2020-07-16
|
351
|
+
### Fixed
|
352
|
+
- The test name is not updated in case of double open->check->close call. [Trello 2011](https://trello.com/c/7UN1AbYU/2011-ruby-ufg-tests-creates-tests-out-of-order-when-classic-eyesopen-is-used)
|
353
|
+
## [3.17.15] - 2020-07-16
|
354
|
+
### Added
|
355
|
+
- Added `VisualViewport` for UFG client. [Trello 1957](https://trello.com/c/jWvdBwex/1957-add-visual-viewport-support-in-the-ui-for-mobile-devices)
|
356
|
+
## [3.17.14] - 2020-07-9
|
357
|
+
### Updated
|
358
|
+
- Added missing `StitchingService` URI field in `RenderRequest`. [Trello 1988](https://trello.com/c/Yr6EsUlL)
|
359
|
+
## [3.17.13] - 2020-07-03
|
360
|
+
## Fixed
|
361
|
+
- eyes_appium: Coded Floating Regions Incorrectly Placed [Trello_1960](https://trello.com/c/j6nJh1LS/1960-ruby-native-app-coded-floating-regions-incorrectly-placed)
|
362
|
+
- eyes_images: Simple eyes_images test is broken [Trello_1949](https://trello.com/c/dHQbz96i/1949-eyesimages-seem-to-be-broken)
|
363
|
+
## [3.17.12] - 2020-07-02
|
364
|
+
## Fixed
|
365
|
+
- :match_timeout property is moved to configuration object [Trello_1935](https://trello.com/c/2Z070Qgs/1935-ruby-selenium-matchtimeout-not-available-in-the-configuration-object)
|
366
|
+
## [3.17.11] - 2020-06-25
|
367
|
+
## Fixed
|
368
|
+
- IosDeviceOrientation is replaced by Orientation [Trello_1944](https://trello.com/c/EzyG7525/1944-ufg-safari-on-ios-orientations-changes)
|
369
|
+
## [Eyes.sdk.ruby 3.17.10] - 2020-06-20
|
370
|
+
## Fixed
|
371
|
+
- a configuration shared between Eyes instances in Rspec [Trello_1938](https://trello.com/c/qOQkbDO7/1938-a-configuration-shared-between-eyes-instances-in-rspec)
|
372
|
+
## [Eyes.sdk.ruby 3.17.9] - 2020-06-19
|
373
|
+
## Fixed
|
374
|
+
- Call :clone on a NilClass for ruby 2.3 [Trello_1855](https://trello.com/c/LCBhnTMd/1885-selenium-ruby-cant-clone-nilclass)
|
375
|
+
## [Eyes.sdk.ruby 3.17.7] - 2020-06-18
|
376
|
+
## Added
|
377
|
+
- eyes.ignore_displacements= and eyes.ignore_displacements methods [Trello_841](https://trello.com/c/uwrYb1Vj/841-add-a-general-method-for-ignoredisplacements?menu=filter&filter=visual%20loca,due:notdue)
|
378
|
+
## Fixed
|
379
|
+
- Encoded regions for 'selector' mode [Trello_1915](https://trello.com/c/BQIrbCfC/1915-ruby-ultrafast-grid-incorrect-placement-of-coded-regions-for-targetregion)
|
380
|
+
## [Eyes.sdk.ruby 3.17.6] - 2020-06-16
|
381
|
+
## Fixed
|
382
|
+
- config.add_device_emulation(name, orientation) is fixed [Trello_1914](https://trello.com/c/l7WRvhSP/1914-ruby-ultrafast-grid-adddeviceemulation-throws-error-after-upgrading-to-3175?menu=filter&filter=due:notdue)
|
383
|
+
## Added
|
384
|
+
- Appium driver support is ectended (Applitools::Appium::Eyes.new(driver: Appium::Driver.new)) [Trello_1913](https://trello.com/c/wQTgRNrN/1913-appium-ruby-regression-unknown-driver-appiumdriver0x00007fbaf9903448-applitoolseyeserror?menu=filter&filter=due:notdue)
|
385
|
+
## [Eyes.sdk.ruby 3.17.5] - 2020-06-15
|
386
|
+
## Added
|
387
|
+
- The ability to set :baseline_env_name for DesktopBrowserInfo, IosDeviceInfo and ChromeEmulationInfo
|
388
|
+
## Fixed
|
389
|
+
- IosScreenOrientation instead of the IosScreenshotOrientation
|
390
|
+
## [Eyes.sdk.ruby 3.17.4] - 2020-06-11
|
391
|
+
## Fixed
|
392
|
+
- restricted to set emulation_info && ios_device_info for DesktopBrowserInfo
|
393
|
+
## [Eyes.sdk.ruby 3.17.3] - 2020-06-06
|
394
|
+
## Deprecated
|
395
|
+
- BrowserTypes module is deprecated in a favor of BrowserType
|
396
|
+
- Orientations module is deprecated in a favor of Orientation
|
397
|
+
## Fixed
|
398
|
+
- IosDeviceOrientation instead of IosDeviceOrientations(plural)
|
399
|
+
## Deprecated
|
400
|
+
## [Eyes.sdk.ruby 3.17.2] - 2020-06-06
|
401
|
+
## Added
|
402
|
+
- safari on ios device emulation for UFG [Trello_1872](https://trello.com/c/bykk2rzB/1872-ufg-safari-on-ios-simulators-support)
|
403
|
+
## [Eyes.sdk.ruby 3.17.1] - 2020-05-26
|
404
|
+
## Fixed
|
405
|
+
- eyes.properties for VG [Trello_1804](https://trello.com/c/Jt2BYz0e/1804-ruby-selenium-addproperty-method-not-recognized-when-running-with-visualgridrunner)
|
406
|
+
- SessionStartInfo parameters were not passed to Json correctly
|
407
|
+
## [Eyes.sdk.ruby 3.17.0] - 2020-05-18
|
408
|
+
## Added
|
409
|
+
- eyes.accessibility_validation(Applitools::AccessibilitySettings.new(Applitools::AccessibilityLevel::AA, Applitools::AccessibilityVersion::WCAG_2_0)) - [Trello_1767](https://trello.com/c/gq69woeK/1767-all-sdks-accessibility-accessiblity-guidelines-version-support-and-additional-verifications?menu=filter&filter=due:notdue)
|
410
|
+
## Removed
|
411
|
+
- eyes.accessibility_level
|
412
|
+
## [Eyes.sdk.ruby 3.16.16] - 2020-04-28
|
413
|
+
## Added
|
414
|
+
- Regions support for eyes_appium (Target#ignore, Target#floating, Target#accessibility, Target#layout, etc.)
|
415
|
+
## [Eyes.sdk.ruby 3.16.15] - 2020-04-24
|
416
|
+
## Deprecated
|
417
|
+
- BrowserTypes::EDGE is deprecated. Please change it to either "EDGE_LEGACY" for the legacy version or to "EDGE_CHROMIUM" for the new Chromium-based version. [Trello 1757](https://trello.com/c/LUe43aee/1757-all-ultrafast-sdks-edge-chromium-support)
|
418
|
+
## [Eyes.sdk.ruby 3.16.14] - 2020-04-10
|
419
|
+
## Added
|
420
|
+
- new_session? flag is taken from start_session server response with fallback to the status code [Trello_1715](https://trello.com/c/DcVzWbeR/1715-all-sdks-updated-long-running-task-mode-for-startsession)
|
421
|
+
## [Eyes.sdk.ruby 3.16.13] - 2020-04-06
|
422
|
+
## Fixed
|
423
|
+
- eyes#hide_scrollbars is true by default [Trello 1592](https://trello.com/c/MXixwLnj/1592-upload-dom-directly-to-azure)
|
424
|
+
- eyes#ignore_caret has been included tothe configuration object [Trello)_1706](https://trello.com/c/16JqYlYb/1706-ignorecaret-globally-is-missing-ruby)
|
425
|
+
- Irrelevant URLs are excluded from SVG resource parsing results [Trello 1691](https://trello.com/c/EAIpEh8s/1691-ruby-vg-parsing-of-irrelevant-urls-from-css-and-svg-resources)
|
426
|
+
## Added
|
427
|
+
- x-applitools-eyes-client header for all API requests [Trello_1697](https://trello.com/c/CzhUxOqE/1697-all-sdks-should-report-their-version-in-all-requests-to-the-eyes-server)
|
428
|
+
## [Eyes.sdk.ruby 3.16.12] - 2020-03-30
|
429
|
+
## Fixed
|
430
|
+
- eyes#send_dom didn't work [Trello 1659](https://trello.com/c/9CfD0fhn/1659-disable-dom-capturing-is-not-working-on-the-test-level-ruby)
|
431
|
+
## [Eyes.sdk.ruby 3.16.11] - 2020-03-27
|
432
|
+
## Fixed
|
433
|
+
- dom_capture threw an exception on a particular page [Trello 1658](https://trello.com/c/x0uYFwx0/1658-test-is-being-aborted-when-trying-to-capture-dom-ruby)
|
434
|
+
## [Eyes.sdk.ruby 3.16.10] - 2020-03-24
|
435
|
+
## Added
|
436
|
+
- The ability to use different Faraday adapters instead the default one [Trello 1683](https://trello.com/c/6IASHoBB/1683-add-http2-support-to-the-communication-library)
|
437
|
+
- The ability to set up timeout for HTTP request
|
438
|
+
- The ability to set up timeout for an Applitools::Future
|
439
|
+
## [Eyes.sdk.ruby 3.16.9] - 2020-03-17
|
440
|
+
## Fixed
|
441
|
+
- Agent ID for eyes_appium set to eyes.appium.ruby/version
|
442
|
+
## [Eyes.sdk.ruby 3.16.8] - 2020-03-13
|
443
|
+
## Fixed
|
444
|
+
- SDK fetch resources: the request header 'Accept-Language' is used along with 'User-Agent'
|
445
|
+
- Timeout for Thread.join is increased up to Faraday's connection timeout
|
446
|
+
- Error handling for resources that failed to fetch
|
447
|
+
## Added
|
448
|
+
- Log messages for resource fetching now include the URL and status code
|
449
|
+
## [Eyes.sdk.ruby 3.16.7] - 2020-03-06
|
450
|
+
### Added
|
451
|
+
- dom_snapshot is uploaded directly to Azure storage
|
452
|
+
### Fixed
|
453
|
+
- dom_snapshot script updated to 7.1.3
|
454
|
+
- send_dom is true by default for EyesSelenium
|
455
|
+
## [Eyes.sdk.ruby 3.16.6] - 2020-03-05
|
456
|
+
### Fixed
|
457
|
+
- eyes#check might be called as #check(tag, target) as well as #check(target)
|
458
|
+
- Selenium Eyes: ignore regions in the current target caused an exception
|
459
|
+
## [Eyes.sdk.ruby 3.16.5] - 2020-03-02
|
460
|
+
### Fixed
|
461
|
+
- double slash issue for custom server URL
|
462
|
+
## [Eyes.sdk.ruby 3.16.2] - 2020-02-06
|
463
|
+
### Fixed
|
464
|
+
- DefaultMatchSettings being overridden incorrectly by ImageMatchSettings
|
465
|
+
## [Eyes.sdk.ruby 3.16.1] - 2020-01-29
|
466
|
+
### Fixed
|
467
|
+
- eyes_appium crashed trying to get viewport_size
|
468
|
+
### Added
|
469
|
+
- long_requests are used for start session
|
470
|
+
## [Eyes.sdk.ruby 3.16.0] - 2020-01-24
|
471
|
+
### Added
|
472
|
+
- Screenshot uploading direct to cloud store
|
473
|
+
## [Eyes.sdk.ruby 3.15.48] - 2020-01-20
|
474
|
+
### Added
|
475
|
+
- New browser types for the VisualGrid (CHROME, CHROME_ONE_VERSION_BACK, CHROME_TWO_VERSIONS_BACK, FIREFOX, FIREFOX_ONE_VERSION_BACK, FIREFOX_TWO_VERSIONS_BACK, SAFARI, SAFARI_ONE_VERSION_BACK, SAFARI_TWO_VERSIONS_BACK, IE_10, IE_11, EDGE)
|
476
|
+
## [Eyes.sdk.ruby 3.15.47] - 2020-01-08
|
477
|
+
### Fixed
|
478
|
+
- eyes_images throws "undefined method `each' for nil:NilClass (NoMethodError)"
|
479
|
+
## [Eyes.sdk.ruby 3.15.43] - 2019-12-20
|
480
|
+
### Removed
|
481
|
+
- delta compression for screenshots
|
482
|
+
## [Eyes.sdk.ruby 3.15.43] - 2019-12-19
|
483
|
+
### Added
|
484
|
+
- eyes.abort_async method implementation
|
485
|
+
### Fixed
|
486
|
+
- save_new_tests is true by default
|
487
|
+
- tests are aborted instead of being closed on render fail
|
488
|
+
## [Eyes.sdk.ruby 3.15.43] - 2019-12-12
|
489
|
+
### Added
|
490
|
+
- Return empty test if the render fails
|
491
|
+
- eyes.abort method
|
492
|
+
## [Eyes.sdk.ruby 3.15.42] - 2019-12-10
|
493
|
+
### Fixed
|
494
|
+
- CSS paring & fetching font urls
|
495
|
+
- VisualGridEyes#config renamed to #configuration
|
496
|
+
- VisualGridEyes.configuration returns a clone of a configuration object
|
497
|
+
## [Eyes.sdk.ruby 3.15.41] - 2019-11-06
|
498
|
+
### Fixed
|
499
|
+
- Various VG related bugs
|
500
|
+
## [Eyes.sdk.ruby 3.15.39] - 2019-11-06
|
501
|
+
### Added
|
502
|
+
- This CHANGELOG file.
|
503
|
+
### Fixed
|
504
|
+
- Chrome 78 css stitching bug
|
data/Rakefile
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'rake/clean'
|
4
|
+
require 'securerandom'
|
5
|
+
|
6
|
+
require 'bundler/gem_helper'
|
7
|
+
# Monkey patch the Bundler release class to change tags
|
8
|
+
module Bundler
|
9
|
+
class GemHelper
|
10
|
+
|
11
|
+
def version_tag
|
12
|
+
ruby_tag = "@applitools/ruby"
|
13
|
+
"#{ruby_tag}/#{gemspec.name}@#{version}"
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
Bundler::GemHelper.install_tasks
|
20
|
+
|
21
|
+
namespace 'github' do
|
22
|
+
task :set_batch_info do
|
23
|
+
batch_id = SecureRandom.uuid
|
24
|
+
# next if ENV['APPLITOOLS_BATCH_ID'] && !ENV['APPLITOOLS_BATCH_ID'].empty?
|
25
|
+
ENV['APPLITOOLS_DONT_CLOSE_BATCHES'] = 'true'
|
26
|
+
ENV['APPLITOOLS_BATCH_ID'] = batch_id unless ENV['APPLITOOLS_BATCH_ID'] && !ENV['APPLITOOLS_BATCH_ID'].empty?
|
27
|
+
ENV['APPLITOOLS_BATCH_NAME'] = "Eyes Ruby SDK(#{RUBY_VERSION} | #{RUBY_PLATFORM})"
|
28
|
+
end
|
29
|
+
|
30
|
+
task :check do
|
31
|
+
puts "Batch ID: #{ENV['APPLITOOLS_BATCH_ID']}"
|
32
|
+
puts "Batch NAME: #{ENV['APPLITOOLS_BATCH_NAME']}"
|
33
|
+
end
|
34
|
+
|
35
|
+
# task :appium_tests => [:set_batch_info, :check] do
|
36
|
+
# sh('bundle exec parallel_rspec -n 1 -- --tag appium -- spec/appium/*_spec.rb')
|
37
|
+
# end
|
38
|
+
|
39
|
+
end
|
data/eyes_appium.gemspec
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
lib = File.expand_path('../lib', __FILE__)
|
4
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
5
|
+
|
6
|
+
require 'applitools/eyes_appium/version'
|
7
|
+
|
8
|
+
Gem::Specification.new do |spec|
|
9
|
+
spec.name = 'eyes_appium'
|
10
|
+
spec.version = Applitools::EyesAppium::VERSION
|
11
|
+
spec.authors = ['Applitools Team']
|
12
|
+
spec.email = ['team@applitools.com']
|
13
|
+
spec.description = 'Appium support for Applitools Ruby SDK'
|
14
|
+
spec.summary = 'Applitools Ruby Appium SDK'
|
15
|
+
spec.homepage = 'https://www.applitools.com'
|
16
|
+
spec.license = 'Applitools'
|
17
|
+
|
18
|
+
spec.files = `git ls-files lib/applitools/appium`.split($RS) + [
|
19
|
+
'lib/eyes_appium.rb',
|
20
|
+
'lib/applitools/eyes_appium/version.rb',
|
21
|
+
'CHANGELOG.md',
|
22
|
+
'eyes_appium.gemspec',
|
23
|
+
'Rakefile',
|
24
|
+
]
|
25
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
26
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
27
|
+
spec.require_paths = %w(lib)
|
28
|
+
spec.add_dependency 'eyes_selenium', "= #{Applitools::EyesAppium::VERSION}"
|
29
|
+
spec.add_dependency 'appium_lib', '>= 10.6.0'
|
30
|
+
end
|
@@ -12,11 +12,18 @@ class Applitools::Appium::Eyes < Applitools::Selenium::SeleniumEyes
|
|
12
12
|
super
|
13
13
|
self.dont_get_title = true
|
14
14
|
self.runner = Applitools::ClassicRunner.new unless runner
|
15
|
-
self.base_agent_id = "eyes.appium.ruby/#{Applitools::VERSION}".freeze
|
15
|
+
self.base_agent_id = "eyes.appium.ruby/#{Applitools::EyesAppium::VERSION}".freeze
|
16
16
|
self.status_bar_height = 0
|
17
17
|
self.utils = Applitools::Appium::Utils
|
18
18
|
end
|
19
19
|
|
20
|
+
def self.environment_sdk
|
21
|
+
{
|
22
|
+
name: :eyes_appium,
|
23
|
+
currentVersion: Applitools::EyesAppium::VERSION
|
24
|
+
}
|
25
|
+
end
|
26
|
+
|
20
27
|
private :perform_driver_settings_for_appium_driver
|
21
28
|
|
22
29
|
def check(*args)
|
data/lib/eyes_appium.rb
CHANGED
@@ -2,8 +2,12 @@
|
|
2
2
|
|
3
3
|
require 'eyes_selenium'
|
4
4
|
require 'appium_lib'
|
5
|
+
require_relative 'applitools/eyes_appium/version'
|
5
6
|
|
6
|
-
Applitools.require_dir('appium')
|
7
|
+
# Applitools.require_dir('appium')
|
8
|
+
Dir[File.join(File.dirname(File.expand_path(__FILE__)), 'applitools', 'appium', '*.rb')].sort.each do |f|
|
9
|
+
require f
|
10
|
+
end
|
7
11
|
|
8
12
|
if defined? Appium::Driver
|
9
13
|
Appium::Core::Base::Driver.class_eval do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eyes_appium
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 6.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Applitools Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: eyes_selenium
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 6.0.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 6.0.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: appium_lib
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -45,6 +45,9 @@ executables: []
|
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
+
- CHANGELOG.md
|
49
|
+
- Rakefile
|
50
|
+
- eyes_appium.gemspec
|
48
51
|
- lib/applitools/appium/android_region_provider.rb
|
49
52
|
- lib/applitools/appium/android_screenshot.rb
|
50
53
|
- lib/applitools/appium/driver.rb
|
@@ -55,7 +58,7 @@ files:
|
|
55
58
|
- lib/applitools/appium/screenshot.rb
|
56
59
|
- lib/applitools/appium/target.rb
|
57
60
|
- lib/applitools/appium/utils.rb
|
58
|
-
- lib/applitools/version.rb
|
61
|
+
- lib/applitools/eyes_appium/version.rb
|
59
62
|
- lib/eyes_appium.rb
|
60
63
|
homepage: https://www.applitools.com
|
61
64
|
licenses:
|
@@ -76,7 +79,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
79
|
- !ruby/object:Gem::Version
|
77
80
|
version: '0'
|
78
81
|
requirements: []
|
79
|
-
rubygems_version: 3.3.
|
82
|
+
rubygems_version: 3.0.3.1
|
80
83
|
signing_key:
|
81
84
|
specification_version: 4
|
82
85
|
summary: Applitools Ruby Appium SDK
|