Sha256: 1687ade045ac05df91a77b9908afd3f5cc7d6cc71dedd29dce33bdd0d1f438c3
Contents?: true
Size: 1016 Bytes
Versions: 75
Compression:
Stored size: 1016 Bytes
Contents
module RubyJmeter class DSL def html_assertion(params={}, &block) node = RubyJmeter::HtmlAssertion.new(params) attach_node(node, &block) end end class HtmlAssertion attr_accessor :doc include Helper def initialize(params={}) testname = params.kind_of?(Array) ? 'HtmlAssertion' : (params[:name] || 'HtmlAssertion') @doc = Nokogiri::XML(<<-EOS.strip_heredoc) <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
Version data entries
75 entries across 75 versions & 1 rubygems