mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
21 lines
594 B
Ruby
21 lines
594 B
Ruby
require 'spec_helper'
|
|
require 'capybara/driver/webkit'
|
|
|
|
describe Capybara::Driver::Webkit do
|
|
before do
|
|
@driver = Capybara::Driver::Webkit.new(TestApp, :browser => $webkit_browser)
|
|
end
|
|
|
|
# TODO: select options
|
|
# it_should_behave_like "driver"
|
|
|
|
# TODO: bug with drag and drop
|
|
# it_should_behave_like "driver with javascript support"
|
|
|
|
it_should_behave_like "driver with cookies support"
|
|
|
|
# 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
|