Sha256: 69bf923020828ca11d689c9d830d21350bec405324efd1f0f6a5ff51150a74c0
Contents?: true
Size: 906 Bytes
Versions: 75
Compression:
Stored size: 906 Bytes
Contents
module RubyJmeter class DSL def beanshell_sampler(params={}, &block) node = RubyJmeter::BeanshellSampler.new(params) attach_node(node, &block) end end class BeanshellSampler attr_accessor :doc include Helper def initialize(params={}) testname = params.kind_of?(Array) ? 'BeanshellSampler' : (params[:name] || 'BeanshellSampler') @doc = Nokogiri::XML(<<-EOS.strip_heredoc) <BeanShellSampler guiclass="BeanShellSamplerGui" testclass="BeanShellSampler" testname="#{testname}" enabled="true"> <stringProp name="BeanShellSampler.query"/> <stringProp name="BeanShellSampler.filename"/> <stringProp name="BeanShellSampler.parameters"/> <boolProp name="BeanShellSampler.resetInterpreter">false</boolProp> </BeanShellSampler>) EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end
Version data entries
75 entries across 75 versions & 1 rubygems