debian-mirror-gitlab/spec/support/helpers/features/sorting_helpers.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
992 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-05-09 12:01:36 +05:30
# These helpers allow you to manipulate with sorting features.
#
# Usage:
# describe "..." do
# include Spec::Support::Helpers::Features::SortingHelpers
# ...
#
# sort_by("Last updated")
#
module Spec
module Support
module Helpers
module Features
module SortingHelpers
def sort_by(value)
2019-02-15 15:39:39 +05:30
find('.filter-dropdown-container .dropdown').click
2018-05-09 12:01:36 +05:30
2019-02-15 15:39:39 +05:30
page.within('ul.dropdown-menu.dropdown-menu-right li') do
2018-05-09 12:01:36 +05:30
click_link(value)
end
end
2022-07-16 23:28:13 +05:30
# pajamas_sort_by is used to sort new pajamas dropdowns. When
# all of the dropdowns are converted, pajamas_sort_by can be renamed to sort_by
# https://gitlab.com/groups/gitlab-org/-/epics/7551
def pajamas_sort_by(value)
find('.filter-dropdown-container .dropdown').click
find('.dropdown-item', text: value).click
end
2018-05-09 12:01:36 +05:30
end
end
end
end
end