我想为rspec测试禁用javascript。
实施例
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
答案 0 :(得分:1)
以下是答案
describe '[SP01/UC25] title error for 31 letters', :js => false, :type => :request do
end