Rails 一些關於 Ruby 4.2 的 dom testing

zhangky · December 21, 2014 · 1477 hits

這個 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
No Reply at the moment.
You need to Sign in before reply, if you don't have an account, please Sign up first.