method

method_missing

method_missing(name, ...)
private

No documentation available.

# File actionpack/lib/action_dispatch/system_test_case.rb, line 191
      def method_missing(name, ...)
        if url_helpers.respond_to?(name)
          url_helpers.public_send(name, ...)
        else
          super
        end
      end