appium_lib 10.0.0 → 10.1.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 +5 -5
- data/CHANGELOG.md +2 -0
- data/docs/android_docs.md +209 -209
- data/docs/ios_docs.md +251 -251
- data/lib/appium_lib/ios/common/helper.rb +2 -2
- data/lib/appium_lib/version.rb +2 -2
- data/release_notes.md +6 -0
- metadata +3 -4
@@ -159,10 +159,10 @@ module Appium
|
|
159
159
|
# @return [Array<Element>]
|
160
160
|
def find_eles_by_predicate(class_name: '*', value:)
|
161
161
|
predicate = if class_name == '*'
|
162
|
-
%(name ==
|
162
|
+
%(name == "#{value}" || label == "#{value}" || value == "#{value}")
|
163
163
|
else
|
164
164
|
%(type == "#{class_name}" && ) +
|
165
|
-
%((name ==
|
165
|
+
%((name == "#{value}" || label == "#{value}" || value == "#{value}"))
|
166
166
|
end
|
167
167
|
@driver.find_elements :predicate, predicate
|
168
168
|
end
|
data/lib/appium_lib/version.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
module Appium
|
2
2
|
# Version and Date are defined on the 'Appium' module, not 'Appium::Common'
|
3
|
-
VERSION = '10.
|
4
|
-
DATE = '2019-02-
|
3
|
+
VERSION = '10.1.0'.freeze unless defined? ::Appium::VERSION
|
4
|
+
DATE = '2019-02-21'.freeze unless defined? ::Appium::DATE
|
5
5
|
end
|
data/release_notes.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
#### v10.1.0 2019-02-21
|
2
|
+
|
3
|
+
- [4b43cf7](https://github.com/appium/ruby_lib/commit/4b43cf7b240a7b4cab7b22198ed4dd1307611545) Release 10.1.0
|
4
|
+
- [588f83f](https://github.com/appium/ruby_lib/commit/588f83f07360d581a317709a539aea8ecb175617) Case sensitive exact (#853)
|
5
|
+
|
6
|
+
|
1
7
|
#### v10.0.0 2019-02-08
|
2
8
|
|
3
9
|
- [4e4ec29](https://github.com/appium/ruby_lib/commit/4e4ec298096f13f60db51bda2019c8e12a0d0c25) Release 10.0.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
|
+
version: 10.1.0
|
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-02-
|
12
|
+
date: 2019-02-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: appium_lib_core
|
@@ -304,8 +304,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
304
304
|
- !ruby/object:Gem::Version
|
305
305
|
version: '0'
|
306
306
|
requirements: []
|
307
|
-
|
308
|
-
rubygems_version: 2.6.14
|
307
|
+
rubygems_version: 3.0.1
|
309
308
|
signing_key:
|
310
309
|
specification_version: 4
|
311
310
|
summary: Ruby library for Appium
|