module RubyJmeter class DSL def random_variable(params={}, &block) node = RubyJmeter::RandomVariable.new(params) attach_node(node, &block) end end class RandomVariable attr_accessor :doc include Helper def initialize(params={}) params[:name] ||= 'RandomVariable' @doc = Nokogiri::XML(<<-EOS.strip_heredoc) 1 false ) EOS update params update_at_xpath params if params[:update_at_xpath] end end end