Sha256: dc57b9cb0b8dd33e4712a496101e0519f1ac6d3286a41c60af954c666908f2b6

Contents?: true

Size: 1.56 KB

Versions: 10

Compression:

Stored size: 1.56 KB

Contents

# frozen_string_literal: true
require 'launchy'

Capybara::SpecHelper.spec '#save_and_open_screenshot' do
  before do
    @session.visit '/'
  end

  it 'opens file from the default directory', :requires => [:screenshot] do
    expected_file_regex = %r{capybara-\d+\.png}
    allow(@session.driver).to receive(:save_screenshot)
    allow(Launchy).to receive(:open)

    @session.save_and_open_screenshot

    expect(@session.driver).to have_received(:save_screenshot).
      with(expected_file_regex, {})
    expect(Launchy).to have_received(:open).with(expected_file_regex)
  end

  it 'opens file from the provided directory', :requires => [:screenshot] do
    custom_path = 'screenshots/1.png'
    allow(@session.driver).to receive(:save_screenshot)
    allow(Launchy).to receive(:open)

    @session.save_and_open_screenshot(custom_path)

    expect(@session.driver).to have_received(:save_screenshot).
      with(/#{custom_path}$/, {})
    expect(Launchy).to have_received(:open).with(/#{custom_path}$/)
  end

  context 'when launchy cannot be required' do
    it 'prints out a correct warning message', :requires => [:screenshot] do
      file_path = File.join(Dir.tmpdir, 'test.png')
      allow(@session).to receive(:require).with('launchy').and_raise(LoadError)
      allow(@session).to receive(:warn)

      @session.save_and_open_screenshot(file_path)

      expect(@session).to have_received(:warn).
        with("File saved to #{file_path}.")
      expect(@session).to have_received(:warn).
        with('Please install the launchy gem to open the file automatically.')
    end
  end
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
capybara-2.9.2 lib/capybara/spec/session/save_and_open_screenshot_spec.rb
tdiary-5.0.2 vendor/bundle/gems/capybara-2.8.0/lib/capybara/spec/session/save_and_open_screenshot_spec.rb
capybara-2.9.1 lib/capybara/spec/session/save_and_open_screenshot_spec.rb
capybara-2.9.0 lib/capybara/spec/session/save_and_open_screenshot_spec.rb
capybara-2.8.1 lib/capybara/spec/session/save_and_open_screenshot_spec.rb
capybara-2.8.0 lib/capybara/spec/session/save_and_open_screenshot_spec.rb
tdiary-5.0.1 vendor/bundle/gems/capybara-2.7.1/lib/capybara/spec/session/save_and_open_screenshot_spec.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/capybara-2.7.1/lib/capybara/spec/session/save_and_open_screenshot_spec.rb
capybara-2.7.1 lib/capybara/spec/session/save_and_open_screenshot_spec.rb
capybara-2.7.0 lib/capybara/spec/session/save_and_open_screenshot_spec.rb