@@ -35,7 +35,8 @@ def wait max_wait=30, interval=0.5, &block
35
35
max_wait = 1 if max_wait <= 0
36
36
result = nil
37
37
timeout max_wait do
38
- until ( begin
38
+ until (
39
+ begin
39
40
result = block . call || true
40
41
rescue Exception
41
42
end )
@@ -65,7 +66,8 @@ def wait_true max_wait=30, interval=0.5, &block
65
66
max_wait = 1 if max_wait <= 0
66
67
result = nil
67
68
timeout max_wait do
68
- until ( begin
69
+ until (
70
+ begin
69
71
result = block . call
70
72
rescue Exception
71
73
end )
@@ -186,16 +188,65 @@ def last_ele tag_name
186
188
xpath "//#{ tag_name } [last()]"
187
189
end
188
190
189
- # Prints a JSON view of the current page
191
+ # Prints xml of the current page
190
192
# @return [void]
191
193
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
193
198
end
194
199
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]
197
204
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
199
250
end
200
251
201
252
# Returns the first element that exactly matches name
0 commit comments