Я хочу отключить JavaScript для теста rspec.
Ex
it '[SP01/UC18/TC25] title error for 31 letters' do
#=> Disable javascript (because text box is already validated by JS to max input 30 characters)
fill_in('title', :with => 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA')
#=> Enable javascript (because I want to track the error messages)
click_button 'submit'
page.should have_content 'error in title'
page.should have_content 'please enter less than 30 characters'
end