method

html_document

rails latest stable - Class: ActionDispatch::Assertions
html_document()
public

No documentation available.

# File actionpack/lib/action_dispatch/testing/assertions.rb, line 15
    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