Files
gitlab-foss/spec/support/helpers/note_interaction_helpers.rb
2023-05-04 18:09:51 +00:00

13 lines
312 B
Ruby

# frozen_string_literal: true
module NoteInteractionHelpers
include MergeRequestDiffHelpers
def open_more_actions_dropdown(note)
note_element = find_by_scrolling("#note_#{note.id}")
note_element.find('.more-actions-toggle').click
note_element.find('.more-actions li', match: :first)
end
end