appium_lib_core 3.9.0 → 3.10.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 +9 -0
- data/lib/appium_lib_core/common/base/search_context.rb +0 -4
- 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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cd289d16dabe2e45527ce5f09ed786082f81001039217e4f3025f5666b084ac6
|
|
4
|
+
data.tar.gz: b4a8cf9d7b0bb1f526bf910de4518796d2fcead98693a2bfa1c333eeb32a0d57
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32aa153b24cf08f661783cc0a1bfe93ef2ddea8b3b7b5eeffc89416c0dda6d97942afe146aff4ee8cdb055093acdc6c992ea359dd0311aa64b96e77613e06719
|
|
7
|
+
data.tar.gz: 67e5c83063987d25dd47cac816f5bedae955b5359bbe71dad7a4f54bcd7e047b2b09095eab08df748b06b44b3ee514113a1b652b7903e9a9ae90bd357736751e
|
data/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,15 @@ Read `release_notes.md` for commit level details.
|
|
|
10
10
|
|
|
11
11
|
### Deprecations
|
|
12
12
|
|
|
13
|
+
## [3.10.0] - 2020-06-09
|
|
14
|
+
|
|
15
|
+
### Enhancements
|
|
16
|
+
- Remove deprecated `Selenium::WebDriver::Error::TimeOutError`
|
|
17
|
+
|
|
18
|
+
### Bug fixes
|
|
19
|
+
|
|
20
|
+
### Deprecations
|
|
21
|
+
|
|
13
22
|
## [3.9.0] - 2020-05-31
|
|
14
23
|
|
|
15
24
|
### Enhancements
|
|
@@ -135,8 +135,6 @@ module Appium
|
|
|
135
135
|
by = _set_by_from_finders(how)
|
|
136
136
|
begin
|
|
137
137
|
bridge.find_element_by by, what.to_s, ref
|
|
138
|
-
rescue Selenium::WebDriver::Error::TimeOutError # will deprecate
|
|
139
|
-
raise Selenium::WebDriver::Error::NoSuchElementError
|
|
140
138
|
rescue Selenium::WebDriver::Error::TimeoutError
|
|
141
139
|
raise Selenium::WebDriver::Error::NoSuchElementError
|
|
142
140
|
end
|
|
@@ -152,8 +150,6 @@ module Appium
|
|
|
152
150
|
by = _set_by_from_finders(how)
|
|
153
151
|
begin
|
|
154
152
|
bridge.find_elements_by by, what.to_s, ref
|
|
155
|
-
rescue Selenium::WebDriver::Error::TimeOutError # will deprecate
|
|
156
|
-
[]
|
|
157
153
|
rescue Selenium::WebDriver::Error::TimeoutError
|
|
158
154
|
[]
|
|
159
155
|
end
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
module Appium
|
|
16
16
|
module Core
|
|
17
|
-
VERSION = '3.
|
|
18
|
-
DATE = '2020-
|
|
17
|
+
VERSION = '3.10.0' unless defined? ::Appium::Core::VERSION
|
|
18
|
+
DATE = '2020-06-09' unless defined? ::Appium::Core::DATE
|
|
19
19
|
end
|
|
20
20
|
end
|
data/release_notes.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### v3.10.0 2020-06-09
|
|
2
|
+
|
|
3
|
+
- [9eff959](https://github.com/appium/ruby_lib_core/commit/9eff959240effde56460c77878a24a20d047f9e9) Release 3.10.0
|
|
4
|
+
- [0602e2a](https://github.com/appium/ruby_lib_core/commit/0602e2ab2b332f7db8e39b7da73707a50720fadd) feat: Remove timeout deprecated (#267)
|
|
5
|
+
|
|
6
|
+
|
|
1
7
|
#### v3.9.0 2020-05-31
|
|
2
8
|
|
|
3
9
|
- [f306188](https://github.com/appium/ruby_lib_core/commit/f306188102222088fbd31b0b9249c6a39ddd074f) Release 3.9.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: 3.
|
|
4
|
+
version: 3.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kazuaki MATSUO
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-06-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: selenium-webdriver
|