Sha256: 6193bd24b118c63dd69dcaa1a66cfd61a39fb5a2f16aec84a14495dca7a0d1a6
Contents?: true
Size: 1.57 KB
Versions: 5
Compression:
Stored size: 1.57 KB
Contents
module JmeterPerf class DSL # DSL method synonymous with the JMeter Element HTMLAssertion # @param [Hash] params Parameters for the HTMLAssertion element (default: `{}`). # @yield block to attach to the HTMLAssertion element # @return [JmeterPerf::HTMLAssertion], a subclass of JmeterPerf::DSL that can be chained with other DSL methods. # @see https://github.com/jlurena/jmeter_perf/wiki/1.-DSL-Documentation#htmlassertion def html_assertion(params = {}, &) node = HTMLAssertion.new(params) attach_node(node, &) end class HTMLAssertion attr_accessor :doc include JmeterPerf::Helpers::XmlDocumentUpdater def initialize(params = {}) testname = params.is_a?(Array) ? "HTMLAssertion" : (params[:name] || "HTMLAssertion") @doc = Nokogiri::XML(JmeterPerf::Helpers::String.strip_heredoc( <<~EOS <HTMLAssertion guiclass="HTMLAssertionGui" testclass="HTMLAssertion" testname="#{testname}" enabled="true"> <longProp name="html_assertion_error_threshold">0</longProp> <longProp name="html_assertion_warning_threshold">0</longProp> <stringProp name="html_assertion_doctype">omit</stringProp> <boolProp name="html_assertion_errorsonly">false</boolProp> <longProp name="html_assertion_format">0</longProp> <stringProp name="html_assertion_filename"/> </HTMLAssertion> 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