appium_lib_core 1.8.0 → 1.8.1
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 +9 -0
- data/lib/appium_lib_core/patch.rb +3 -0
- data/lib/appium_lib_core/version.rb +2 -2
- data/release_notes.md +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb144b091ff17c0a0e3622d0c4fdfcf52f249097
|
|
4
|
+
data.tar.gz: 9505ccace9d66bf7d158bddcacf2be55fee23c00
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 418e7329c21ce6a068607fd5b9c3390411002ecd42371b8090df9ff2b6fbf266cc6f6ee5314e866f976e5295ec30007169abade04117d912f84a9a611c332b0b
|
|
7
|
+
data.tar.gz: a534bc261163984fc743a7a68c5839d4cff1dd933a718b20fb9977e6d2f5c733ea2c0de697f25c904089b87a0534378de3804a22cd1dfb23f40a0e014ebbaabf
|
data/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,15 @@ All notable changes to this project will be documented in this file.
|
|
|
8
8
|
|
|
9
9
|
### Deprecations
|
|
10
10
|
|
|
11
|
+
## [1.8.1] - 2018-07-13
|
|
12
|
+
### Enhancements
|
|
13
|
+
|
|
14
|
+
### Bug fixes
|
|
15
|
+
- Fix including search context in `::Selenium::WebDriver::Elemenet`
|
|
16
|
+
- `include ::Appium::Core::Base::SearchContext` instead of `::Selenium::WebDriver::SearchContext`
|
|
17
|
+
|
|
18
|
+
### Deprecations
|
|
19
|
+
|
|
11
20
|
## [1.8.0] - 2018-07-07
|
|
12
21
|
### Enhancements
|
|
13
22
|
- Add Tizen case
|
|
@@ -4,6 +4,9 @@ module Appium
|
|
|
4
4
|
# Implement useful features for element.
|
|
5
5
|
# Patch for Selenium Webdriver.
|
|
6
6
|
class Selenium::WebDriver::Element
|
|
7
|
+
# To extend Appium related SearchContext into ::Selenium::WebDriver::Element
|
|
8
|
+
include ::Appium::Core::Base::SearchContext
|
|
9
|
+
|
|
7
10
|
# Note: For testing .text should be used over value, and name.
|
|
8
11
|
|
|
9
12
|
# Returns the value attribute
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module Appium
|
|
2
2
|
module Core
|
|
3
|
-
VERSION = '1.8.
|
|
4
|
-
DATE = '2018-07-
|
|
3
|
+
VERSION = '1.8.1'.freeze unless defined? ::Appium::Core::VERSION
|
|
4
|
+
DATE = '2018-07-13'.freeze unless defined? ::Appium::Core::DATE
|
|
5
5
|
end
|
|
6
6
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### v1.8.1 2018-07-13
|
|
2
|
+
|
|
3
|
+
- [d423fb4](https://github.com/appium/ruby_lib_core/commit/d423fb419e76fc4eb66845f0b59c15987592cc5f) Release 1.8.1
|
|
4
|
+
- [7bf6958](https://github.com/appium/ruby_lib_core/commit/7bf6958af3fbee490731f36a23dba1ef6e0205e6) include ::Appium::Core::Base::SearchContext instead of ::Selenium::WebDriver::SearchContext (#104)
|
|
5
|
+
|
|
6
|
+
|
|
1
7
|
#### v1.8.0 2018-07-07
|
|
2
8
|
|
|
3
9
|
- [77350e6](https://github.com/appium/ruby_lib_core/commit/77350e6a23b91c84f446e1637a748ff6feb01ded) Release 1.8.0
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: appium_lib_core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kazuaki MATSUO
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-07-
|
|
11
|
+
date: 2018-07-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: selenium-webdriver
|