Open lacco opened 10 years ago
In case the select2 component is a multi select field, select2_container.has_selector?(".select2-choice") takes Capybara.default_wait_time seconds to complete. We should use non-waiting finders like #first instead.
select2_container.has_selector?(".select2-choice")
Capybara.default_wait_time
#first
:+1:
In case the select2 component is a multi select field,
select2_container.has_selector?(".select2-choice")
takesCapybara.default_wait_time
seconds to complete. We should use non-waiting finders like#first
instead.