跳至内容 跳至搜索
命名空间
方法
H
包含的模块

实例公共方法

html_document()

# File actionpack/lib/action_dispatch/testing/assertions.rb, line 17
def html_document
  @html_document ||= if @response.media_type&.end_with?("xml")
    Nokogiri::XML::Document.parse(@response.body)
  else
    Rails::Dom::Testing.html_document.parse(@response.body)
  end
end