Skip to content

Commit e1a2cd4

Browse files
authored
Release 9 6 0 (#643)
* Release 9.6.0 * Update release notes * update docs * update changelog
1 parent 6c6e916 commit e1a2cd4

File tree

9 files changed

+1469
-604
lines changed

9 files changed

+1469
-604
lines changed

CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,39 @@ Commit based release not is [release_notes.md](./release_notes.md)
33

44
Release tags are https://github.com/appium/ruby_lib/releases .
55

6+
## v9.5.0
7+
### 1. Enhancements
8+
- Reduce Global Driver
9+
- We need to provide `driver` to work `TouchAction` and `MultiAction` without global driver
10+
- `TouchAction`
11+
```ruby
12+
driver = Appium::Driver.new(opts, false).start_driver
13+
action = TouchAction.new.press(x: 45, y: 100).wait(5).release
14+
action.perform(driver)
15+
action = TouchAction.new.swipe(....)
16+
action.perform(driver)
17+
```
18+
19+
- `MultiAction`
20+
```ruby
21+
driver = Appium::Driver.new(opts, false).start_driver
22+
pinch 200, true, driver
23+
```
24+
- Add example to run multiple iOS Simulators [doc](https://github.com/appium/ruby_lib/blob/master/docs/ios_xcuitest.md#run-tests-on-multiple-simulators-with-xcode-9)
25+
- Require Xcode 9 and Appium 1.6.6
26+
27+
### 2. Bug fixes
28+
- `scroll_to` is failed on some Android 5.0 and 5.1 devices
29+
- https://github.com/appium/ruby_lib/pull/638
30+
31+
### 3. Deprecations
32+
33+
### Special Thanks
34+
- Fixing `acroll_to`
35+
- [@emen](https://github.com/emen)
36+
- Add alias `quit_driver`
37+
- [@DylanLacey ](https://github.com/DylanLacey)
38+
639
## v9.5.0
740
### 1. Enhancements
841
- Support `selenium-webdriver3.4.1+`

0 commit comments

Comments
 (0)