Skip to content

Commit b71c9d4

Browse files
Fix get_source
1 parent c352e68 commit b71c9d4

File tree

3 files changed

+17
-10
lines changed

3 files changed

+17
-10
lines changed

lib/appium_lib/android/helper.rb

+11-3
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def _fix_android_native_source source
106106
# <android.app.ActionBar$Tab => <android.app.ActionBar.Tab
107107
# </android.app.ActionBar$Tab> => </android.app.ActionBar.Tab>
108108
source = source.gsub(/<#{before}\s*\$\s*#{after}/, "<#{fixed}").
109-
gsub(/<\/#{before}\s*\$\s*#{after}>/, "</#{fixed}>")
109+
gsub(/<\/#{before}\s*\$\s*#{after}>/, "</#{fixed}>")
110110
end
111111

112112
source
@@ -115,7 +115,7 @@ def _fix_android_native_source source
115115
# Prints xml of the current page
116116
# @return [void]
117117
def source
118-
_print_source _fix_android_native_source get_source
118+
_print_source get_source
119119
end
120120

121121
# Android only.
@@ -129,7 +129,6 @@ def get_android_inspect class_name=false
129129
if source.start_with? '<html>' # parse html from webview
130130
parser = @android_html_parser ||= Nokogiri::HTML::SAX::Parser.new(Common::HTMLElements.new)
131131
else
132-
source = _fix_android_native_source source
133132
parser = @android_native_parser ||= Nokogiri::XML::SAX::Parser.new(AndroidElements.new)
134133
end
135134
parser.document.reset # ensure document is reset before parsing
@@ -319,5 +318,14 @@ def complex_find_exact class_name, value
319318
def complex_finds_exact class_name, value
320319
find_elements :uiautomator, string_visible_exact(class_name, value)
321320
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
322330
end # module Android
323331
end # module Appium

lib/appium_lib/common/helper.rb

-7
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,6 @@ def _print_source source
6363
puts doc.to_xml indent: 2
6464
end
6565

66-
# Returns XML string for the current page
67-
# Same as driver.page_source
68-
# @return [String]
69-
def get_source
70-
@driver.page_source
71-
end
72-
7366
# @private
7467
# http://nokogiri.org/Nokogiri/XML/SAX.html
7568
class CountElements < Nokogiri::XML::SAX::Document

lib/appium_lib/ios/helper.rb

+6
Original file line numberDiff line numberDiff line change
@@ -425,5 +425,11 @@ def source
425425
_print_source get_source
426426
end
427427

428+
# Returns XML string for the current page
429+
# Same as driver.page_source
430+
# @return [String]
431+
def get_source
432+
@driver.page_source
433+
end
428434
end # module Ios
429435
end # module Appium

0 commit comments

Comments
 (0)