mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 07:40:12 +01: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
|