spec/watirspec/form_spec.rb in watir-webdriver-0.0.2 vs spec/watirspec/form_spec.rb in watir-webdriver-0.0.3
- old
+ new
@@ -52,12 +52,14 @@
lambda { browser.form(:no_such_how, 'some_value').exists? }.should raise_error(MissingWayOfFindingObjectException)
end
end
describe "#submit" do
- it "submits the form" do
- browser.form(:id, "delete_user").submit
- browser.text.should include("Semantic table")
+ not_compliant_on :celerity do
+ it "submits the form" do
+ browser.form(:id, "delete_user").submit
+ browser.text.should include("Semantic table")
+ end
end
end
end