spec/element_spec.rb in cello-0.0.26 vs spec/element_spec.rb in cello-0.0.27

- old
+ new

@@ -19,8 +19,14 @@ (@page.methods.map.include? :element_is_enable?).should be true end it "Click with the right button on the element method exists" do (@page.methods.map.include? :element_right_click).should be true end + it "Wait visible for on the element method exists" do + (@page.methods.map.include? :element_wait_visible_for).should be true + end + it "Wait exists for on the element method exists" do + (@page.methods.map.include? :element_wait_exists_for).should be true + end end end