@@ -4,6 +4,14 @@ Read `release_notes.md` for commit level details.
4
4
5
5
## [ Unreleased]
6
6
7
+ ### Enhancements
8
+
9
+ ### Bug fixes
10
+
11
+ ### Deprecations
12
+
13
+ ## [ 3.1.3] - 2019-06-18
14
+
7
15
### Enhancements
8
16
- Add arguments for ` start_activity `
9
17
- ` intentAction ` , ` intentCategory ` , ` intentFlags ` , ` dontStopAppOnReset `
@@ -205,11 +213,11 @@ The behaviour follows the default spec in WebDriver.
205
213
206
214
## [2.1.0] - 2018-11-14
207
215
### Enhancements
208
- - Support below style _1_, has _url_ parameter, in addition to style _2_
216
+ - Support below style _1_, has _url_ parameter, in addition to style _2_
209
217
```
210
218
# 1
211
219
Appium::Core.for url: "http://127.0.0.1:8080/wd/hub", caps: {...}, appium_lib: {...}
212
-
220
+
213
221
# 2
214
222
Appium::Core.for caps: {...}, appium_lib: {...}
215
223
```
@@ -501,7 +509,7 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
501
509
502
510
## [1.3.4] - 2018-03-21
503
511
### Enhancements
504
- - Add `save_viewport_screenshot` which get screenshot except for status bar.
512
+ - Add `save_viewport_screenshot` which get screenshot except for status bar.
505
513
- https://github.com/search?q=org%3Aappium+viewportScreenshot&type=Code
506
514
- [iOS] Add `start_performance_record` and `get_performance_record`
507
515
@@ -543,7 +551,7 @@ This release has a breaking change for creating core. Thus, I've bumped the majo
543
551
Appium::Core::TouchAction.new(@driver)
544
552
.swipe(start_x: 75, start_y: 500, offset_x: 75, offset_y: 500, duration: 500)
545
553
.perform
546
-
554
+
547
555
# Tap (75, 500) and move the point to (75, 1000) with duration 500ms.
548
556
Appium::Core::TouchAction.new(@driver)
549
557
.swipe(start_x: 75, start_y: 500, offset_x: 75, offset_y: 1000, duration: 500)
0 commit comments