Method: RubyJmeter::JsonPathPostprocessor#initialize
- Defined in:
- lib/ruby-jmeter/dsl/json_path_postprocessor.rb
#initialize(params = {}) ⇒ JsonPathPostprocessor
Returns a new instance of JsonPathPostprocessor.
13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/ruby-jmeter/dsl/json_path_postprocessor.rb', line 13 def initialize(params={}) testname = params.kind_of?(Array) ? 'JsonPathPostprocessor' : (params[:name] || 'JsonPathPostprocessor') @doc = Nokogiri::XML(<<-EOS.strip_heredoc) <JSONPostProcessor guiclass="JSONPostProcessorGui" testclass="JSONPostProcessor" testname="#{testname}" enabled="true"> <stringProp name="JSONPostProcessor.referenceNames"/> <stringProp name="JSONPostProcessor.jsonPathExprs"/> <stringProp name="JSONPostProcessor.match_numbers"/> </JSONPostProcessor>) EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end |