appium_flutter_finder 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/appium_flutter_finder/version.rb +1 -1
- data/lib/appium_flutter_finder.rb +4 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fddd985882669ff4a5fb12abd164382209a11c400d5fb6438ee7554a73c15930
|
4
|
+
data.tar.gz: dba0e768b43ed4b4cf9d5083acee322856351aa21d1742f254c3b26f245e1639
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9d129a265bfb926a4820272f3abe83979c7929ceba1c7eb707d63ba7c05ab86c1bc716eb8eb9327983e81485b703329cfe0a3a19eff5517be53d10f3bd566e3d
|
7
|
+
data.tar.gz: f365ba4a6071352160e88f707baaf52a324d535b4b81a8eac6fbf871e78e598dabfa69c7be6ab409d8dbeab9d443c4088e784239e13fc2a382b4d71c45778e61
|
data/README.md
CHANGED
@@ -43,7 +43,7 @@ After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
|
43
43
|
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
44
44
|
|
45
45
|
## Changelog
|
46
|
-
- 0.3
|
46
|
+
- 0.3, 0.3.1
|
47
47
|
- Add `first_match_only` option in `by_ancestor` and `by_descendant`
|
48
48
|
- 0.2.1
|
49
49
|
- Fix `by_ancestor` and `by_descendant`
|
@@ -22,7 +22,8 @@ module Appium
|
|
22
22
|
type: 'Ancestor',
|
23
23
|
serialized_finder: serialized_finder,
|
24
24
|
matching: matching,
|
25
|
-
match_root: match_root
|
25
|
+
match_root: match_root,
|
26
|
+
first_match_only: first_match_only
|
26
27
|
)
|
27
28
|
end
|
28
29
|
|
@@ -31,7 +32,8 @@ module Appium
|
|
31
32
|
type: 'Descendant',
|
32
33
|
serialized_finder: serialized_finder,
|
33
34
|
matching: matching,
|
34
|
-
match_root: match_root
|
35
|
+
match_root: match_root,
|
36
|
+
first_match_only: first_match_only
|
35
37
|
)
|
36
38
|
end
|
37
39
|
|