module Arachni::Element::DOM::Capabilities::Mutable

@author Tasos “Zapotek” Laskos <tasos.laskos@arachni-scanner.com>

Private Instance Methods

prepare_mutation_options( options ) click to toggle source
# File lib/arachni/element/dom/capabilities/mutable.rb, line 19
def prepare_mutation_options( options )
    options = super( options )
    # No sense in doing these for the DOM:
    #
    # Either payload will be raw in the first place or the browser will
    # override us.
    options.delete :with_raw_payloads
    # Browser handles the submission, there may not even be an HTTP request.
    options.delete :with_both_http_methods
    options
end