summaryrefslogtreecommitdiff
path: root/qa/qa/page/component/select2.rb
blob: 30829eb0221a6d05ff3de7fa5c69abc13425ae21 (plain)
1
2
3
4
5
6
7
8
9
10
11
module QA
  module Page
    module Component
      module Select2
        def select_item(item_text)
          find('ul.select2-result-sub > li', text: item_text).click
        end
      end
    end
  end
end