mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-17 07:40:12 +01:00
12 lines
457 B
Ruby
12 lines
457 B
Ruby
|
|
module TracksStepHelper
|
||
|
|
def submit_multiple_next_action_form
|
||
|
|
selenium.click("xpath=//form[@id='todo-form-multi-new-action']//button[@id='todo_multi_new_action_submit']", :wait_for => :ajax, :javascript_framework => :jquery)
|
||
|
|
end
|
||
|
|
|
||
|
|
def submit_next_action_form
|
||
|
|
selenium.click("xpath=//form[@id='todo-form-new-action']//button[@id='todo_new_action_submit']", :wait_for => :ajax, :javascript_framework => :jquery)
|
||
|
|
end
|
||
|
|
|
||
|
|
end
|
||
|
|
|
||
|
|
World(TracksStepHelper)
|