f0391c2517
Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
7 lines
180 B
Ruby
7 lines
180 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SearchHelpers
|
|
def select_filter(name)
|
|
find(:xpath, "//ul[contains(@class, 'search-filter')]//a[contains(.,'#{name}')]").click
|
|
end
|
|
end
|