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

search_helpers.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 815337f8615dc098e97cb363680b338da4cd36a7 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module SearchHelpers
  def select_filter(name)
    find(:xpath, "//ul[contains(@class, 'search-filter')]//a[contains(.,'#{name}')]").click
  end
end