Skip to content

Instantly share code, notes, and snippets.

@sbeam
Created October 7, 2012 19:39
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sbeam/3849340 to your computer and use it in GitHub Desktop.
Save sbeam/3849340 to your computer and use it in GitHub Desktop.
capybara helper for select2-ajax elements
# select2_ajax helper to make capybara work with ajax-enabled Select2 elements
# assumes 'placeholder' option is used in Select2 (if it is using ajax, it should be)
#
# usage:
#
# it "should have a select2 field for searching by team name" do
# @team = Factory :team
# select2_ajax @team.name, :from => "Select a Team", :minlength => 4
# click_button "Join"
# page.should have_content "You are now on '#{@team.name}'."
# end
module CapybaraExt
def select2_ajax value, options={}
raise "Must pass a hash containing 'from'" if not options.is_a?(Hash) or not options.has_key?(:from)
placeholder = options[:from]
minlength = options[:minlength] || 4
click_link placeholder
js = %Q|container = $('.select2-container:contains("#{placeholder}")');
$('input[type=text]', container).val('#{value[0,minlength]}').trigger('keyup');
window.setTimeout( function() {
$('li:contains("#{value}")', container).click();
}, 1000);|
page.execute_script(js)
end
end
RSpec.configure do |c|
c.include CapybaraExt
end
@siva3395
Copy link

Above method is not working for me.

@abacha
Copy link

abacha commented Apr 24, 2013

its not working for me either

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment