Welcome to mirror list, hosted at ThFree Co, Russian Federation.

autocomplete_helpers.rb « features « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 106e823afef39137bd324ae6199f5b15feb56039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Features
  module AutocompleteHelpers
    def find_autocomplete_menu
      find('.atwho-view ul', visible: true)
    end

    def find_highlighted_autocomplete_item
      find('.atwho-view li.cur', visible: true)
    end
  end
end