mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
40 lines
1.4 KiB
Ruby
40 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module TomSelectHelper
|
|
def tomselect_open(field_name)
|
|
page.find("##{field_name}-ts-control").click
|
|
end
|
|
|
|
def tomselect_multiselect(value, options)
|
|
tomselect_wrapper = page.find("[name='#{options[:from]}']").sibling(".ts-wrapper")
|
|
tomselect_wrapper.find(".ts-control").click
|
|
tomselect_wrapper.find(:css, '.ts-dropdown.multi .ts-dropdown-content .option',
|
|
text: value).click
|
|
end
|
|
|
|
def tomselect_search_and_select(value, options)
|
|
tomselect_wrapper = page.find("[name='#{options[:from]}']").sibling(".ts-wrapper")
|
|
tomselect_wrapper.find(".ts-control").click
|
|
# Use send_keys as setting the value directly doesn't trigger the search
|
|
tomselect_wrapper.find(:css, '.ts-dropdown input.dropdown-input').send_keys(value)
|
|
tomselect_wrapper.find(:css, '.ts-dropdown .ts-dropdown-content .option', text: value).click
|
|
end
|
|
|
|
def tomselect_select(value, options)
|
|
tomselect_wrapper = page.find("[name='#{options[:from]}']").sibling(".ts-wrapper")
|
|
tomselect_wrapper.find(".ts-control").click
|
|
|
|
tomselect_wrapper.find(:css, '.ts-dropdown .ts-dropdown-content .option', text: value).click
|
|
end
|
|
|
|
def select_tom_select(value, from:)
|
|
container = find(:id, from)
|
|
|
|
within(container) do
|
|
find('.ts-control').send_keys(value)
|
|
end
|
|
|
|
find('.ts-dropdown .ts-dropdown-content .option', text: /#{Regexp.quote(value)}/i).click
|
|
end
|
|
end
|