命名空间
方法
实例公共方法
save_and_open_page(path = html_dump_default_path) 链接
将响应主体的內容保存到文件,并尝试在您的浏览器中打开它。要使页面自动打开,您的 Gemfile 中必须存在 Launchy。
源代码:显示 | 在 GitHub 上
# 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