Skip to content

Instantly share code, notes, and snippets.

@ntalbott
Created September 8, 2012 23:16
Show Gist options
  • Save ntalbott/3680893 to your computer and use it in GitHub Desktop.
Save ntalbott/3680893 to your computer and use it in GitHub Desktop.
Field enabler for the rack-test Capybara driver
module CapybaraHelpers
def enable_fields(*fields)
fields.each do |field|
page.find_field(field).base.native.remove_attribute("disabled")
end
end
end
World(CapybaraHelpers)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment