Created
September 8, 2012 23:16
-
-
Save ntalbott/3680893 to your computer and use it in GitHub Desktop.
Field enabler for the rack-test Capybara driver
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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