1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00
teamcapybara--capybara/spec/driver/selenium_driver_spec.rb
2010-09-26 17:58:39 +02:00

14 lines
453 B
Ruby

require 'spec_helper'
describe Capybara::Driver::Selenium do
before do
@driver = TestSessions::Selenium.driver
end
it_should_behave_like "driver"
it_should_behave_like "driver with javascript support"
it_should_behave_like "driver with frame support"
it_should_behave_like "driver with support for window switching"
it_should_behave_like "driver without status code support"
it_should_behave_like "driver with cookies support"
end