Re: Response Assertion Validation

2014-03-10 Thread sebb
http://jmeter.apache.org/usermanual/component_reference.html#Size_Assertion On 9 March 2014 15:54, Srinivasa Tekkatte Shenoy wrote: > Hi All, > > I have added a Response Assertion. For Ex: 34 character > unique in Soap/XML-RPC request sampler. > > I would like to validate "34 character unique" n

Re: Response Assertion Validation

2014-03-10 Thread Flavio Cysne
use a regular expression to expect for exactly 34 characters (\w{34}) \w is the same of this expression [a-zA-Z0-9_] (Ref.: http://www.w3schools.com/jsref/jsref_regexp_wordchar.asp ) if you are expecting other characters change the "\w" for the extend form and add the new ones.

Response Assertion Validation

2014-03-09 Thread Srinivasa Tekkatte Shenoy
Hi All, I have added a Response Assertion. For Ex: 34 character unique in Soap/XML-RPC request sampler. I would like to validate "34 character unique" number has returned every time. Means total 34 character only returned. Kindly let me the procedure to do this. Regards Shenoy __