Skip to content

Commit 2c8142b

Browse files
Fix page_class to work with Appium 1.0
1 parent 265b658 commit 2c8142b

File tree

3 files changed

+58
-72
lines changed

3 files changed

+58
-72
lines changed

lib/appium_lib/android/helper.rb

-33
Original file line numberDiff line numberDiff line change
@@ -217,39 +217,6 @@ def find_eles_attr tag_name, attribute=nil
217217
mobile :find, array
218218
end
219219

220-
def get_page_class
221-
r = []
222-
run_internal = lambda do |node|
223-
if node.kind_of? Array
224-
node.each { |node| run_internal.call node }
225-
return
226-
end
227-
228-
keys = node.keys
229-
return if keys.empty?
230-
r.push node['@class'] if keys.include?('@class')
231-
232-
run_internal.call node['node'] if keys.include?('node')
233-
end
234-
json = get_source
235-
run_internal.call json['hierarchy']
236-
237-
res = []
238-
r = r.sort
239-
r.uniq.each do |ele|
240-
res.push "#{r.count(ele)}x #{ele}\n"
241-
end
242-
count_sort = ->(one, two) { two.match(/(\d+)x/)[1].to_i <=> one.match(/(\d+)x/)[1].to_i }
243-
res.sort(&count_sort).join ''
244-
end
245-
246-
# Count all classes on screen and print to stdout.
247-
# Useful for appium_console.
248-
def page_class
249-
puts get_page_class
250-
nil
251-
end
252-
253220
# Android only.
254221
# Returns a string containing interesting elements.
255222
# If an element has no content desc or text, then it's not returned by this method.

lib/appium_lib/common/helper.rb

+58-7
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ def wait max_wait=30, interval=0.5, &block
3535
max_wait = 1 if max_wait <= 0
3636
result = nil
3737
timeout max_wait do
38-
until (begin
38+
until (
39+
begin
3940
result = block.call || true
4041
rescue Exception
4142
end)
@@ -65,7 +66,8 @@ def wait_true max_wait=30, interval=0.5, &block
6566
max_wait = 1 if max_wait <= 0
6667
result = nil
6768
timeout max_wait do
68-
until (begin
69+
until (
70+
begin
6971
result = block.call
7072
rescue Exception
7173
end)
@@ -186,16 +188,65 @@ def last_ele tag_name
186188
xpath "//#{tag_name}[last()]"
187189
end
188190

189-
# Prints a JSON view of the current page
191+
# Prints xml of the current page
190192
# @return [void]
191193
def source
192-
ap get_source
194+
doc = Nokogiri::XML(@driver.page_source) do |config|
195+
config.options = Nokogiri::XML::ParseOptions::NOBLANKS | Nokogiri::XML::ParseOptions::NONET
196+
end
197+
puts doc.to_xml indent: 2
193198
end
194199

195-
# Returns XML for the current page
196-
# @return [Nokogiri::XML]
200+
201+
# Returns XML string for the current page
202+
# Same as driver.page_source
203+
# @return [String]
197204
def get_source
198-
Nokogiri::XML @driver.page_source
205+
@driver.page_source
206+
end
207+
208+
# http://nokogiri.org/Nokogiri/XML/SAX.html
209+
class CountElements < Nokogiri::XML::SAX::Document
210+
attr_reader :result
211+
212+
def initialize
213+
reset
214+
end
215+
216+
def reset
217+
@result = Hash.new 0
218+
end
219+
220+
# http://nokogiri.org/Nokogiri/XML/SAX/Document.html
221+
def start_element name, attrs = []
222+
@result[name] += 1
223+
end
224+
225+
def formatted_result
226+
message = ''
227+
sorted = @result.sort_by { |element, count| count }.reverse
228+
sorted.each do |element, count|
229+
message += "#{count}x #{element}\n"
230+
end
231+
message.strip
232+
end
233+
end # class CountElements
234+
235+
# Returns a string of class counts.
236+
def get_page_class
237+
parser = @count_elements_parser ||= Nokogiri::XML::SAX::Parser.new(CountElements.new)
238+
239+
parser.document.reset
240+
parser.parse get_source
241+
242+
parser.document.formatted_result
243+
end
244+
245+
# Count all classes on screen and print to stdout.
246+
# Useful for appium_console.
247+
def page_class
248+
puts get_page_class
249+
nil
199250
end
200251

201252
# Returns the first element that exactly matches name

lib/appium_lib/ios/helper.rb

-32
Original file line numberDiff line numberDiff line change
@@ -52,38 +52,6 @@ def ios_password length=1
5252
'•' * length
5353
end
5454

55-
# Returns a string of class counts.
56-
def get_page_class
57-
r = []
58-
run_internal = lambda do |node|
59-
if node.kind_of? Array
60-
node.each { |node| run_internal.call node }
61-
return
62-
end
63-
64-
keys = node.keys
65-
return if keys.empty?
66-
r.push node['type'] if keys.include?('type')
67-
68-
run_internal.call node['children'] if keys.include?('children')
69-
end
70-
json = get_source
71-
run_internal.call json['children']
72-
73-
res = []
74-
r = r.sort
75-
r.uniq.each do |ele|
76-
res.push "#{r.count(ele)}x #{ele}\n"
77-
end
78-
count_sort = ->(one, two) { two.match(/(\d+)x/)[1].to_i <=> one.match(/(\d+)x/)[1].to_i }
79-
res.sort(&count_sort).join ''
80-
end
81-
82-
def page_class
83-
puts get_page_class
84-
nil
85-
end
86-
8755
# Returns a string of interesting elements. iOS only.
8856
#
8957
# Defaults to inspecting the 1st windows source only.

0 commit comments

Comments
 (0)