Webrat::SaveAndOpenPage

Public Instance Methods

open_in_browser(path) click to toggle source
# File lib/webrat/core/save_and_open_page.rb, line 20
def open_in_browser(path) # :nodoc
  require "launchy"
  Launchy::Browser.run(path)
rescue LoadError
  warn "Sorry, you need to install launchy to open pages: `gem install launchy`"
end
save_and_open_page() click to toggle source

Saves the page out to Rails.root/tmp/ and opens it in the default web browser if on OS X. Useful for debugging.

Example:

save_and_open_page
# File lib/webrat/core/save_and_open_page.rb, line 8
def save_and_open_page
  return unless File.exist?(Webrat.configuration.saved_pages_dir)

  filename = "#{Webrat.configuration.saved_pages_dir}/webrat-#{Time.now.to_i}.html"

  File.open(filename, "w") do |f|
    f.write response_body
  end

  open_in_browser(filename)
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.