Skip to content

v9.3.0: Release 9 3 0 (#474)

Compare
Choose a tag to compare
@KazuCocoa KazuCocoa released this 22 Jan 09:13
· 503 commits to master since this release

1. Enhancements

  • wait / wait_true need global defaults #250
  • Problem with delta_x/delta_y in swipe method #461
    • Revert fix arguments for move_to in swipe method. in Appium v8.2.1
    • delta_x/delta_y replace to offset_* for iOS
      • e.g.: swipe start_x: start_x, start_y: start_y, end_offset_x: 0, offset_y: -100
    • delta_x/delta_y replace to end_* for Android
      • e.g.: swipe start_x: start_x, start_y: start_y, end_x: start_x, end_y: start_y - 100
    • The reason why there are two kind of arguments is the following issue.
  • 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.

3. Deprecations

  • Problem with delta_x/delta_y in swipe method #461
    • delta_x/delta_y are replaced to offset_* for iOS and end_* for Android.