BigW Consortium Gitlab

Commit 2d58626a by Jose Ivan Vargas

Changed helper methods to use the click method

parent 41e5ec8f
...@@ -39,7 +39,7 @@ shared_examples 'reportable note' do |type| ...@@ -39,7 +39,7 @@ shared_examples 'reportable note' do |type|
end end
def open_dropdown(dropdown) def open_dropdown(dropdown)
dropdown.find('.more-actions-toggle').trigger('click') dropdown.find('.more-actions-toggle').click
dropdown.find('.dropdown-menu li', match: :first) dropdown.find('.dropdown-menu li', match: :first)
end end
end end
...@@ -2,7 +2,7 @@ module NoteInteractionHelpers ...@@ -2,7 +2,7 @@ module NoteInteractionHelpers
def open_more_actions_dropdown(note) def open_more_actions_dropdown(note)
note_element = find("#note_#{note.id}") note_element = find("#note_#{note.id}")
note_element.find('.more-actions-toggle').trigger('click') note_element.find('.more-actions-toggle').click
note_element.find('.more-actions .dropdown-menu li', match: :first) note_element.find('.more-actions .dropdown-menu li', match: :first)
end end
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment