Capybaraが提供するドキュメントでは、特定のテスト グループの default_driver を変更できます。
describe 'some stuff which requires js', :js => true do
it 'will use the default js driver'
it 'will switch to one specific driver', :driver => :selenium
end
特定のキュウリ テスト グループに対してこれを実行したい場合はどうすればよいですか? これらのパラメータを追加するにはどうすればよいですか?
When /^I do something$/ do
fill_in "a_text_box", :with => "stuff"
fill_in "another_text_box", :with => "another_thing"
end
ありがとう!