這個 Module,ActionDispatch::Assertions::SelectorAssertions
已經被移動到了
Rails::Dom::Testing::Assertions::SelectorAssertions
其內部的實現也已轉移到 Nokogiri。
在手動引入assert_select
的時候
不僅要修正 include Rails::Dom::Testing::Assertions::SelectorAssertions
還要重新實現另外兩個方法:
def html_document
Nokogiri::HTML::Document.parse(@your_own_html_document)
end
def document_root_element
html_document.root
end