Add missing Capybara select2 helper

This commit is contained in:
Stan Hu 2017-08-16 01:44:53 -07:00
parent 7b5722c890
commit ebd5c309a8
1 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,11 @@
#
module Select2Helper
def capybara_select2(value)
# Taken from https://github.com/goodwill/capybara-select2/blob/master/gem/lib/capybara-select2.rb#L45
find('.select2-drop li.select2-result-selectable', text: value).click
end
def select2(value, options = {})
raise ArgumentError, 'options must be a Hash' unless options.is_a?(Hash)