2011-02-26 17:02:00 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
require 'capybara/driver/webkit'
|
|
|
|
|
|
|
|
describe Capybara::Driver::Webkit do
|
|
|
|
before do
|
2011-03-11 11:19:59 -05:00
|
|
|
@driver = Capybara::Driver::Webkit.new(TestApp, :browser => $webkit_browser)
|
2011-02-26 17:02:00 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# TODO: select options
|
|
|
|
# it_should_behave_like "driver"
|
|
|
|
|
|
|
|
# TODO: bug with drag and drop
|
|
|
|
# it_should_behave_like "driver with javascript support"
|
|
|
|
|
2011-02-26 17:05:28 -05:00
|
|
|
it_should_behave_like "driver with cookies support"
|
2011-02-26 17:02:00 -05:00
|
|
|
|
|
|
|
# Can't support:
|
|
|
|
# it_should_behave_like "driver with header support"
|
|
|
|
# it_should_behave_like "driver with status code support"
|
|
|
|
# it_should_behave_like "driver with frame support"
|
|
|
|
end
|