Releases: appium/ruby_lib
Releases · appium/ruby_lib
v9.3.3: Release 9 3 3 (#494)
1. Enhancements
- add tags_include/tags_exact to be able to find elements of arbitrary classes such as XCUIElementTypeTextView #488
2. Bug fixes
3. Deprecations
v9.3.2: Release 9 3 2 (#487)
v9.3.1: Release 9 3 1 (#484)
1. Enhancements
- Clarify disabling Sauce Labs. #471
- add getting performance #479
- require [email protected]
2. Bug fixes
- Fix missed var rename #481
3. Deprecations
v9.3.0: Release 9 3 0 (#474)
1. Enhancements
- wait / wait_true need global defaults #250
- You can set default value in
appium_lib
- e.g.: lib/appium_lib/driver.rb
- You can set default value in
- Problem with delta_x/delta_y in swipe method #461
- Revert fix arguments for
move_to
inswipe
method. in Appium v8.2.1 delta_x/delta_y
replace tooffset_*
for iOS- e.g.:
swipe start_x: start_x, start_y: start_y, end_offset_x: 0, offset_y: -100
- e.g.:
delta_x/delta_y
replace toend_*
for Android- e.g.:
swipe start_x: start_x, start_y: start_y, end_x: start_x, end_y: start_y - 100
- e.g.:
- The reason why there are two kind of arguments is the following issue.
- Revert fix arguments for
Clarify disabling Sauce Labs. #471- next
2. Bug fixes
- REQUIRED_VERSION_XCUITEST #463
- find elements except for name attributes in text/s, button/s #462
- Return only visible elements
- Previously, these methods return all elements.
- Return only visible elements
3. Deprecations
- Problem with delta_x/delta_y in swipe method #461
delta_x/delta_y
are replaced tooffset_*
for iOS andend_*
for Android.
v9.2.0: Release 9 2 0 (#460)
v9.1.3
v9.1.2
v9.1.1
v9.1.0
- release 9.1 #415
1. Enhancements
- update dependencies
- Support selenium-webdriver 3.0.2+
- If you'd like to use
selenium-webdriver2.x
, please useappium_lib9.0.0
- If you'd like to use
- use
find_element_with_appium
instead offind_element
if you call the method via@driver
instances. - #383
- Support selenium-webdriver 3.0.2+
2. Bug fixes
3. Deprecations
- Drop Ruby 1.9.3, 2.0, 2.1 support
- Because these ruby versions have already stop updating.
v9.0.0
- release v9.0.0 #402
1. Enhancements
- Support
XCUITest
strategy for iOS- Basically,
XCUITest
strategy is compatible withAppium
strategy in this library. - But users who use XPath should be check this document since XPath has performance issue
- Users who use
find_element/s
should work fine. - tests for elements are here
- Users who use
- Basically,
Special thanks to @montdidier