1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/lib/capybara/spec/session/save_screenshot_spec.rb
Andrey Botalov 46b1e95fb8 Cleanup save_* family of methods
* Better YARD documentation
* Make `path` argument of `save_screenshpt` `nil` by default
* Add `options` argument for `save_and_open_screenshot`
2014-08-24 14:48:20 +03:00

23 lines
667 B
Ruby

Capybara::SpecHelper.spec '#save_screenshot', requires: [:screenshot] do
before do
@session.visit '/foo'
end
it "generates sensible filename" do
allow(@session.driver).to receive(:save_screenshot)
@session.save_screenshot
regexp = Regexp.new(File.expand_path('capybara-\d+\.png'))
expect(@session.driver).to have_received(:save_screenshot).with(regexp, {})
end
it "allows to specify another path" do
allow(@session.driver).to receive(:save_screenshot)
custom_path = 'screenshots/1.png'
@session.save_screenshot(custom_path)
expect(@session.driver).to have_received(:save_screenshot).with(custom_path, {})
end
end