We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97e54a6 commit 8c34235Copy full SHA for 8c34235
lib/appium_lib/ios/helper.rb
@@ -51,6 +51,9 @@ def fix_space(s)
51
visible = fix_space element['visible']
52
type = fix_space element['type']
53
54
+ # TODO: Rubocop warning cleanup
55
+ # rubocop:disable Metrics/BlockNesting
56
+
57
# if class_name is set, mark non-matches as invisible
58
visible = (type.downcase.include?(class_name)).to_s if class_name
59
if visible && visible == 'true'
@@ -75,6 +78,7 @@ def fix_space(s)
75
78
puts " value: #{value}" if value
76
79
puts " hint: #{hint}" if hint
77
80
end
81
+ # rubocop:enable Metrics/BlockNesting
82
83
# there may be many ids with the same value.
84
# output all exact matches.
0 commit comments