跳至内容 跳至搜索
命名空间
方法
S

实例公共方法

save_and_open_page(path = html_dump_default_path)

将响应主体的內容保存到文件,并尝试在您的浏览器中打开它。要使页面自动打开,您的 Gemfile 中必须存在 Launchy。

# File actionpack/lib/action_dispatch/testing/test_helpers/page_dump_helper.rb, line 10
def save_and_open_page(path = html_dump_default_path)
  save_page(path).tap { |s_path| open_file(s_path) }
end