# File lib/www/mechanize/page.rb, line 92
      def forms
        @forms ||= WWW::Mechanize::List.new(
          search('//form').map do |html_form|
            form = Form.new(html_form, @mech, self)
            form.action ||= @uri.to_s
            form
          end
        )
      end