Skip to content

Commit 9c4672b

Browse files
Add instance numbers to page output on Android
Example: android.widget.TextView (7) text, desc: NFC id: android:id/text1 find_element(:uiautomator, 'new UiSelector().className("android.widget.TextView").instance(7)').text # NFC Fix #214
1 parent de5732d commit 9c4672b

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

lib/appium_lib/android/helper.rb

+7-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ module Android
33
# @private
44
# http://nokogiri.org/Nokogiri/XML/SAX.html
55
class AndroidElements < Nokogiri::XML::SAX::Document
6-
# TODO: Support strings.xml ids
7-
attr_reader :result, :keys
6+
attr_reader :result, :keys, :instance
87

98
def filter
109
@filter
@@ -20,17 +19,22 @@ def filter= value
2019
def initialize
2120
reset
2221
@filter = false
22+
@instance = Hash.new -1
2323
end
2424

2525
def reset
2626
@result = ''
2727
@keys = %w[text resource-id content-desc]
28+
@instance = Hash.new -1
2829
end
2930

3031
# http://nokogiri.org/Nokogiri/XML/SAX/Document.html
3132
def start_element name, attrs = []
3233
return if filter && !name.downcase.include?(filter)
3334

35+
# instance numbers start at 0.
36+
number = instance[name] += 1
37+
3438
attributes = {}
3539

3640
attrs.each do |key, value|
@@ -75,7 +79,7 @@ def start_element name, attrs = []
7579
string += " id: #{id}\n" unless id.nil?
7680
string += " strings.xml: #{string_ids}" unless string_ids.nil?
7781

78-
@result += "\n#{name}\n#{string}" unless attributes.empty?
82+
@result += "\n#{name} (#{number})\n#{string}" unless attributes.empty?
7983
end
8084
end # class AndroidElements
8185

0 commit comments

Comments
 (0)