Sha256: c41585de78fddc90ce64e6bbdb03bd384dcbde5b3730e4d7748def5557e2fa15
Contents?: true
Size: 1.26 KB
Versions: 5
Compression:
Stored size: 1.26 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element SwitchController # @param [Hash] params Parameters for the SwitchController element (default: `{}`). # @yield block to attach to the SwitchController element # @return [JmeterPerf::SwitchController], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#switchcontroller def switch_controller(params = {}, &) node = SwitchController.new(params) attach_node(node, &) end class SwitchController attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "SwitchController" : (params[:name] || "SwitchController") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS <SwitchController guiclass="SwitchControllerGui" testclass="SwitchController" testname="#{testname}" enabled="true"> <stringProp name="SwitchController.value"/> </SwitchController> EOS )) update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end end
Version data entries
5 entries across 5 versions & 1 rubygems