class RubyJmeter::HtmlLinkParser
Attributes
doc[RW]
Public Class Methods
new(params={})
click to toggle source
# File lib/ruby-jmeter/dsl/html_link_parser.rb, line 13 def initialize(params={}) testname = params.kind_of?(Array) ? 'HtmlLinkParser' : (params[:name] || 'HtmlLinkParser') @doc = Nokogiri::XML(<<-EOS.strip_heredoc) <AnchorModifier guiclass="AnchorModifierGui" testclass="AnchorModifier" testname="#{testname}" enabled="true"/>) EOS update params update_at_xpath params if params.is_a?(Hash) && params[:update_at_xpath] end