module JmeterPerf class DSL # DSL method synonymous with the JMeter Element ViewResultsTree # @param [Hash] params Parameters for the ViewResultsTree element (default: `{}`). # @yield block to attach to the ViewResultsTree element # @return [JmeterPerf::ViewResultsTree], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#viewresultstree def view_results_tree(params = {}, &) node = ViewResultsTree.new(params) attach_node(node, &) end class ViewResultsTree attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "ViewResultsTree" : (params[:name] || "ViewResultsTree") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS false saveConfig true true true true false true false false false false false false false false false false false false 0 true true true EOS )) update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end end