appium_lib 12.0.0.rc5 → 12.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +23 -7
- data/docs/android_docs.md +207 -229
- data/docs/ios_docs.md +245 -267
- data/lib/appium_lib/version.rb +2 -2
- data/readme.md +1 -0
- data/release_notes.md +28 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2add0b5d8bd1d6f72d13b7464ad31196c4ad37fd5ecc4809e0eadc2db9b2201b
|
|
4
|
+
data.tar.gz: f035061f54d471731bf533c6c431fd4453cac17b28402139930d7ad7a0762fa5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21e2df557b279f120ff24c454be96b97848ac6be5a357952d9df797a4f1ce2ed63e253e6e13c0f8c5df5fe269be4e19abefe578732211a203080d93178ac8c6d
|
|
7
|
+
data.tar.gz: 4c88bea3321224a18fd360a2f2789477147eb5a1698b6eadab524b25f608277d41a1140be89f1b96df4fdda1d4e79f25137f8691dd0cb1beb755d2a022488fe8
|
data/CHANGELOG.md
CHANGED
|
@@ -7,20 +7,36 @@ Release tags are https://github.com/appium/ruby_lib/releases .
|
|
|
7
7
|
|
|
8
8
|
### 1. Enhancements
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
### 2. Bug fixes
|
|
11
|
+
|
|
12
|
+
### 3. Deprecations
|
|
13
|
+
|
|
14
|
+
## 12.0.0 - 2021-11-06
|
|
15
|
+
### 1. Enhancements
|
|
16
|
+
|
|
17
|
+
- Update ruby_lib_core version from v4 to v5. The change affects this library.
|
|
18
|
+
- [Migration from v4 to v5 in ruby_lib_core client](https://github.com/appium/ruby_lib_core#migration-from-v4-to-v5)
|
|
19
|
+
- Base Selenium Ruby binding is now v4
|
|
20
|
+
- Support only W3C WebDriver spec (and a few Appium specific commands)
|
|
13
21
|
- Support Ruby 2.6+
|
|
14
|
-
- `element.id` returns the element id instead of `element.ref
|
|
22
|
+
- `element.id` returns the element id instead of `element.ref`
|
|
23
|
+
- `element.ref` now returns an array
|
|
15
24
|
- Removed `forceMjsonwp` to send only MJSONWP capabilities since Selenium cleint v4 no longer supports MJSONWP
|
|
16
|
-
- No longer set default `timeouts` as `0
|
|
25
|
+
- No longer set default `timeouts` as `0`
|
|
26
|
+
- ruby_lib_core will call `/timeouts` endpoint only when `appium_lib: { wait: 5 }` is provided explicitly
|
|
17
27
|
- Raises `::Appium::Core::Error::ArgumentError` instead of `ArgumentError` for this library specific argument errors
|
|
18
28
|
|
|
19
29
|
### 2. Deprecations
|
|
20
30
|
- `TouchAction` and `MultiTouch` are deprecated
|
|
21
31
|
- Please use W3C actions instead https://github.com/appium/ruby_lib/blob/master/docs/w3c.md
|
|
22
|
-
- Other examples
|
|
23
|
-
-
|
|
32
|
+
- Other examples
|
|
33
|
+
- https://github.com/appium/ruby_lib/pull/909
|
|
34
|
+
- https://github.com/appium/ruby_lib_core/blob/master/CHANGELOG.md#deprecations-1
|
|
35
|
+
- `launch_app`, `close_app` and `reset` are deprecated. Please read [issues#15807](https://github.com/appium/appium/issues/15807) for more details.
|
|
36
|
+
- `activate_app` or a new session request can be alternatives of `launch_app`
|
|
37
|
+
- `terminate_app` or close the session request can be alternatives of `close_app`
|
|
38
|
+
- Close current session and creating a new session, or `terminate_app` and `launch_app` can be alternatives of `reset`
|
|
39
|
+
|
|
24
40
|
|
|
25
41
|
## 11.1.0 - 2020-12-29 (11.2.0 is the same as this version)
|
|
26
42
|
|