Sha256: a75fbbf8cf7b2699d4571b6b5e0dd94986c7526cf9a435fc4865174051f0b241
Contents?: true
Size: 1.48 KB
Versions: 1
Compression:
Stored size: 1.48 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element XPathAssertion # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#xpathassertion # @param [Hash] params Parameters for the XPathAssertion element (default: `{}`). # @yield block to attach to the XPathAssertion element # @return [JmeterPerf::XPathAssertion], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. def x_path_assertion(params = {}, &) node = JmeterPerf::XPathAssertion.new(params) attach_node(node, &) end end class XPathAssertion attr_accessor :doc include Helper def initialize(params = {}) testname = params.is_a?(Array) ? "XPathAssertion" : (params[:name] || "XPathAssertion") @doc = Nokogiri::XML(<<~EOS.strip_heredoc) <XPathAssertion guiclass="XPathAssertionGui" testclass="XPathAssertion" testname="#{testname}" enabled="true"> <boolProp name="XPath.negate">false</boolProp> <stringProp name="XPath.xpath">/</stringProp> <boolProp name="XPath.validate">false</boolProp> <boolProp name="XPath.whitespace">false</boolProp> <boolProp name="XPath.tolerant">false</boolProp> <boolProp name="XPath.namespace">false</boolProp> <stringProp name="Assertion.scope">all</stringProp> </XPathAssertion> EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jmeter_perf-0.0.7 | lib/jmeter_perf/dsl/x_path_assertion.rb |