I have a page that returns a set of catalog ids in the following format:
addCatentryId('445653', '23151', 'csb_RVI_10053');
I am trying to separate each of the above values into an array for further evaluation.
Based on suggestions in another post in this forum, a two step approach was recommended:
1) Use the first regular expression extractor to retrieve the data segment above from the page response data
2) Execute a follow-up Regular Expression extractor against the results of the first data extract to convert the string data into an array of usable values.
To this end, I have setup the following extractors in my JMeter script:
Extractor 1: Jmeter Regular Expression Extractor 1
Extractor 2: Jmeter Regular Expression Extractor 2
When I execute the above, I get the following results, which I am not sure how to interpret, but it appears that the catEntryIDString is being found, but for some reason is not being fed to the second regular expression process:
JMeterVariables:
JMeterThread.last_sample_ok=true
JMeterThread.pack=org.apache.jmeter.threads.SamplePackage@41035d67
START.HMS=073225
START.MS=1479126745560
START.YMD=20161114
TESTSTART.MS=1479129860911
__jmeter.USER_TOKEN__=Place User Order 1-1
arrValItemId= <---- Why is this empty?
catEntryIDString=null <--- should this be null?
catEntryIDString_g=0
catEntryIDString_g0=addCatentryId('460734', '12220', 'csb_RVI_10053'); <-- data appears to be getting retrieved by 1st extractor
Any help would be greatly appreciated, as Google Search turns up no useful information, and the BlazeMeter help pages for JMeter do not go into this much detail (at least based on my information searches of that site).
Thanks in advance!!