Sha256: db5a28f3028c217b12ff711b2ab2bf572031b8a371c34cfddef2ec2f2bed9faf
Contents?: true
Size: 1.28 KB
Versions: 2
Compression:
Stored size: 1.28 KB
Contents
=begin Copyright 2010-2015 Tasos Laskos <tasos.laskos@arachni-scanner.com> This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end module Arachni::Element class Cookie # Provides access to DOM operations for {Cookie cookies}. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class DOM < Base include Arachni::Element::Capabilities::Auditable::DOM def initialize( options ) super self.inputs = (options[:inputs] || self.parent.inputs).dup @default_inputs = self.inputs.dup.freeze end # Submits the cookie using the configured {#inputs}. def trigger browser.goto action, take_snapshot: false, cookies: self.inputs, update_transitions: false end def name inputs.keys.first end def value inputs.values.first end def to_set_cookie p = parent.dup p.inputs = inputs p.to_set_cookie end def type self.class.type end def self.type :cookie_dom end def initialization_options super.merge( inputs: inputs.dup ) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
arachni-1.2.1 | lib/arachni/element/cookie/dom.rb |
arachni-1.2 | lib/arachni/element/cookie/dom.rb |