# File lib/relevance/tarantula/form_submission.rb, line 33
      def crawl
        begin
          response = form.crawler.submit(method, action, data)
          log "Response #{response.code} for #{self}"
        rescue ActiveRecord::RecordNotFound => e
          log "Skipping #{action}, presumed ok that record is missing"
          response = Relevance::Tarantula::Response.new(:code => "404", :body => e.message, :content_type => "text/plain")
        end
        form.crawler.handle_form_results(self, response)
        response
      end