module Capybara::DSL

Public Instance Methods

screenshot_and_open_image() click to toggle source
# File lib/capybara-screenshot/capybara.rb, line 12
def screenshot_and_open_image
  Capybara::Screenshot.screenshot_and_open_image
end
screenshot_and_save_page() click to toggle source

Adds class methods to Capybara module and gets mixed into the current scope during Cucumber and RSpec tests

# File lib/capybara-screenshot/capybara.rb, line 8
def screenshot_and_save_page
  Capybara::Screenshot.screenshot_and_save_page
end
using_session(name,&blk)
using_session_with_screenshot(name,&blk) click to toggle source
# File lib/capybara-screenshot/capybara.rb, line 16
def using_session_with_screenshot(name,&blk)
  original_session_name = Capybara.session_name
  Capybara::Screenshot.final_session_name = name
  using_session_without_screenshot(name,&blk)
  Capybara::Screenshot.final_session_name = original_session_name
end
Also aliased as: using_session
using_session_without_screenshot(name,&blk)
Alias for: using_session