@@ -106,7 +106,7 @@ def _fix_android_native_source source
106
106
# <android.app.ActionBar$Tab => <android.app.ActionBar.Tab
107
107
# </android.app.ActionBar$Tab> => </android.app.ActionBar.Tab>
108
108
source = source . gsub ( /<#{ before } \s *\$ \s *#{ after } / , "<#{ fixed } " ) .
109
- gsub ( /<\/ #{ before } \s *\$ \s *#{ after } >/ , "</#{ fixed } >" )
109
+ gsub ( /<\/ #{ before } \s *\$ \s *#{ after } >/ , "</#{ fixed } >" )
110
110
end
111
111
112
112
source
@@ -115,7 +115,7 @@ def _fix_android_native_source source
115
115
# Prints xml of the current page
116
116
# @return [void]
117
117
def source
118
- _print_source _fix_android_native_source get_source
118
+ _print_source get_source
119
119
end
120
120
121
121
# Android only.
@@ -129,7 +129,6 @@ def get_android_inspect class_name=false
129
129
if source . start_with? '<html>' # parse html from webview
130
130
parser = @android_html_parser ||= Nokogiri ::HTML ::SAX ::Parser . new ( Common ::HTMLElements . new )
131
131
else
132
- source = _fix_android_native_source source
133
132
parser = @android_native_parser ||= Nokogiri ::XML ::SAX ::Parser . new ( AndroidElements . new )
134
133
end
135
134
parser . document . reset # ensure document is reset before parsing
@@ -319,5 +318,14 @@ def complex_find_exact class_name, value
319
318
def complex_finds_exact class_name , value
320
319
find_elements :uiautomator , string_visible_exact ( class_name , value )
321
320
end
321
+
322
+ # Returns XML string for the current page
323
+ # Same as driver.page_source
324
+ # @return [String]
325
+ def get_source
326
+ src = @driver . page_source
327
+ src = _fix_android_native_source src unless src && src . start_with? ( '<html>' )
328
+ src
329
+ end
322
330
end # module Android
323
331
end # module Appium
0 commit comments