mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 07:40:12 +01:00
17 lines
468 B
Ruby
17 lines
468 B
Ruby
|
|
Then /^the single action form should be visible$/ do
|
||
|
|
selenium.is_visible("todo_new_action").should == true
|
||
|
|
end
|
||
|
|
|
||
|
|
Then /^the single action form should not be visible$/ do
|
||
|
|
selenium.is_visible("todo_new_action").should == false
|
||
|
|
end
|
||
|
|
|
||
|
|
Then /^the multiple action form should be visible$/ do
|
||
|
|
selenium.is_visible("todo_multi_add").should == true
|
||
|
|
end
|
||
|
|
|
||
|
|
Then /^the multiple action form should not be visible$/ do
|
||
|
|
selenium.is_visible("todo_multi_add").should == false
|
||
|
|
end
|
||
|
|
|