class RubyJmeter::BeanshellSampler
Attributes
doc[RW]
Public Class Methods
new(params={})
click to toggle source
# File lib/ruby-jmeter/dsl/beanshell_sampler.rb, line 13 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