|
2 | 2 | # [5.0.0]() (2019-01-29)
|
3 | 3 |
|
4 | 4 | ### Bug Fixes
|
5 |
| -* isDisplayed already checks whether actual coordinates of element are in visible viewport of display |
| 5 | +* isDisplayed already checks whether actual coordinates of an element are in visible viewport of display |
| 6 | +* resolve app name when starting of appium server is skipped |
6 | 7 | * **locators** android webView locator is renamed to android.webkit.WebView
|
7 | 8 |
|
8 | 9 | ### Features
|
9 |
| -* run tests without providing appium capabilities config/ --runType. This option is only available for local runs in case a device is already started and app is already installed. |
| 10 | +* run tests without providing appium capabilities config/ --runType. |
| 11 | + This option is only available for local runs which means that |
| 12 | + device should already be started and the app should already be installed. |
10 | 13 | * device properties can be passed as regex expression (this is not available in sauceLab)
|
11 | 14 | * isSelected method - works only if the element has tag select
|
12 | 15 | * --runType parameter is already case insensitive e.g. sim.iOS == sim.ios
|
|
16 | 19 |
|
17 | 20 | ### BREAKING CHANGES
|
18 | 21 |
|
19 |
| -* --reuseDevice options is removed. This is not concerning sauceLabs |
| 22 | +* --reuseDevice options is removed. This is not concerning test which uses sauceLabs |
20 | 23 |
|
21 | 24 | Before:
|
22 | 25 | ```
|
23 | 26 | $ npm run e2e -- --runType android23 --reuseDevice
|
24 | 27 | ```
|
25 | 28 | After there are a few options in order to preserve device alive:
|
26 | 29 |
|
27 |
| -1. If you are developing your application simply run |
| 30 | +1. If you are developing your application with `tns run android/ ios` |
28 | 31 |
|
29 | 32 | ```
|
30 | 33 | $ npm run e2e android or ios
|
31 | 34 | ```
|
32 |
| -2. If you are running on CI, change appium options |
| 35 | +2. If you are running on CI, change appium options as |
33 | 36 | --fullReset: false -> this will keep device alive
|
34 | 37 | --noReset: false -> this will install app on device
|
35 | 38 |
|
36 | 39 |
|
37 |
| -### Bug Fixes |
38 |
| -* fix: resolve app name when skip starting of appium server |
39 |
| - |
40 | 40 |
|
41 | 41 | <a name="4.0.6"></a>
|
42 | 42 | # [4.0.6]() (2018-08-08)
|
|
0 commit comments