summaryrefslogtreecommitdiff
path: root/qa/qa/page/component/dropdown_filter.rb
blob: a39a04a668db24730f1c113f09986731b3cc0439 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module QA
  module Page
    module Component
      module DropdownFilter
        def filter_and_select(item)
          page.has_css?('.dropdown-input-field', wait: QA::Support::Repeater::DEFAULT_MAX_WAIT_TIME)

          find('.dropdown-input-field').set(item)
          click_link item
        end
      end
    end
  end
end