Skip to content

Instantly share code, notes, and snippets.

@nmenag
Forked from metaskills/gist:2836849
Created November 12, 2017 16:17
Show Gist options
  • Save nmenag/f5c268d833e7aeeacf3f6cb8b1a8f7d9 to your computer and use it in GitHub Desktop.
Save nmenag/f5c268d833e7aeeacf3f6cb8b1a8f7d9 to your computer and use it in GitHub Desktop.
Basic Save & Open Page For Poltergeist
def save_and_open_page
dir = "#{Rails.root}/tmp/cache/capybara"
file = "#{dir}/#{Time.now.strftime('%Y-%m-%d-%H-%M-%S')}.png"
FileUtils.mkdir_p dir
page.driver.render file
wait_until { File.exists?(file) }
system "open #{file}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment