mirror of
https://github.com/TracksApp/tracks.git
synced 2026-04-18 01:59:02 +02:00
8 lines
315 B
Ruby
8 lines
315 B
Ruby
|
|
When /^I select "([^\"]*)" recurrence pattern$/ do |recurrence_period|
|
||
|
|
selenium.click("recurring_todo_recurring_period_#{recurrence_period.downcase}")
|
||
|
|
end
|
||
|
|
|
||
|
|
Then /^I should see the form for "([^\"]*)" recurrence pattern$/ do |recurrence_period|
|
||
|
|
selenium.is_visible("recurring_#{recurrence_period.downcase}")
|
||
|
|
end
|