If u are using culerity, and somehow u missed the webrat matchers, eg. has_xpath(), here's what u can do:
 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
   |  require 'webrat/core/xml' require 'webrat/core/matchers'
  module WebratLike
    include Webrat::Matchers
    def response     html = $browser.html     def html.body ; to_s ; end     html   end
  end
  World(WebratLike)   end end
   | 
Enjoys !!
 
No comments:
Post a Comment