summaryrefslogtreecommitdiff
path: root/spec/support/helpers/note_interaction_helpers.rb
blob: 551c759133c4c910127e4ad252d8ab9d9aa92226 (plain)
1
2
3
4
5
6
7
8
module NoteInteractionHelpers
  def open_more_actions_dropdown(note)
    note_element = find("#note_#{note.id}")

    note_element.find('.more-actions').click
    note_element.find('.more-actions .dropdown-menu li', match: :first)
  end
end