Reputation: 61
I want to disable javascript for a rspec test.
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
Upvotes: 1
Views: 605
Reputation: 61
Here is the answer
describe '[SP01/UC25] title error for 31 letters', :js => false, :type => :request do
end
Upvotes: 1