i'm fairly new to JMeter.
on the wiki, http://nagoya.apache.org/wiki/apachewiki.cgi?JMeterFAQ, under /How do I parameterize my JMeter test cases?, /item 2 says to "Click the Add button to add the following user defined variables to the Test Plan node:". i think that should read:
"Click the Add button to add a Pre Processor > User Parameter to the Test Plan node. Click Add Variable to add the folowing variables/values to the User Parameter list.
i'm also extremely interested in the section that follows, the dynamic parameters. unfortunately, being a java junkie, i don't have much experience with perl regular expressions. is there perhaps a collection of usage of these regular expressions with JMeter? one thing that i can think of is, say you have a hidden input form element that contains a value that you need to grab:
<input type="hidden" name="HiddenVarYouCantSee" value="IChangePerRequest" />
<input type="hidden" name="SecondHidden" value="IChangePerRequest" />
<input type="hidden" name="ThirdHidden" value="IChangePerRequest" />
how would i grab the value(s) here? yes, there's other hidden variables on the form that i don't care about. i only know the name of the ones that i do care about.
n/m a little searching on the mail archives turned up the answer. something along the lines of:
<input type="hidden" name="SecondHidden" value="(\w*)" />
will give it back, though i've only tried out the number example someone else posted a while back for hidden variables. these take a little bit of work to get down.
thanks!
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

