mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-20 09:10:12 +01:00
15 lines
No EOL
466 B
Ruby
15 lines
No EOL
466 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 |