appium_lib 10.4.0 → 10.4.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 +1 -0
- data/docs/android_docs.md +213 -213
- data/docs/ios_docs.md +259 -259
- data/lib/appium_lib/driver.rb +1 -1
- data/lib/appium_lib/ios/common/helper.rb +1 -1
- data/lib/appium_lib/version.rb +2 -2
- data/release_notes.md +7 -0
- metadata +2 -2
data/lib/appium_lib/driver.rb
CHANGED
@@ -253,7 +253,7 @@ module Appium
|
|
253
253
|
# https://github.com/YOU-i-Labs/appium-youiengine-driver
|
254
254
|
Appium::Logger.debug('YouiEngine')
|
255
255
|
else
|
256
|
-
Appium::Logger.debug('no device matched') # core also shows
|
256
|
+
Appium::Logger.debug('no device matched') # core also shows warning message
|
257
257
|
end
|
258
258
|
end
|
259
259
|
end
|
@@ -21,7 +21,7 @@ module Appium
|
|
21
21
|
def start_element(type, attrs = [])
|
22
22
|
return if filter && !filter.eql?(type)
|
23
23
|
|
24
|
-
page = attrs.each_with_object({}) do |
|
24
|
+
page = attrs.each_with_object({}) do |attr, hash|
|
25
25
|
hash[attr[0]] = attr[1] if %w(name label value hint visible).include?(attr[0])
|
26
26
|
hash
|
27
27
|
end
|
data/lib/appium_lib/version.rb
CHANGED
@@ -14,6 +14,6 @@
|
|
14
14
|
|
15
15
|
module Appium
|
16
16
|
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
|
17
|
-
VERSION = '10.4.
|
18
|
-
DATE = '2019-
|
17
|
+
VERSION = '10.4.1' unless defined? ::Appium::VERSION
|
18
|
+
DATE = '2019-09-11' unless defined? ::Appium::DATE
|
19
19
|
end
|
data/release_notes.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
#### v10.4.1 2019-09-11
|
2
|
+
|
3
|
+
- [12317e4](https://github.com/appium/ruby_lib/commit/12317e4d74b20d01813526b28e642e3522193fa3) Release 10.4.1
|
4
|
+
- [58218e1](https://github.com/appium/ruby_lib/commit/58218e18f74df362e874b2a39d9e922b27b6bd5e) fix ios page (#866)
|
5
|
+
- [7f010e7](https://github.com/appium/ruby_lib/commit/7f010e70149847ae5af8dcf08eae889311f78e6d) fix typo in a comment
|
6
|
+
|
7
|
+
|
1
8
|
#### v10.4.0 2019-07-19
|
2
9
|
|
3
10
|
- [954a3a8](https://github.com/appium/ruby_lib/commit/954a3a8d4d5cd56fa5a4e80d021805759dbf5e10) Release 10.4.0
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appium_lib
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 10.4.
|
4
|
+
version: 10.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- code@bootstraponline.com
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2019-
|
12
|
+
date: 2019-09-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: appium_lib_core
|