Rails 一些關於 Ruby 4.2 的 dom testing

zhangky · 2014年12月21日 · 1477 次阅读

這個 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
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请 注册新账号