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

select2.rb « component « page « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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