class Capybara::Config

def deprecate(method, alternate_method, once = false)

def deprecate(method, alternate_method, once = false)
  @deprecation_notified ||= {}
  warn "DEPRECATED: ##{method} is deprecated, please use ##{alternate_method} instead" unless once and @deprecation_notified[method]
  @deprecation_notified[method] = true
end