Using an http request I extract a valid xhtml query string
?NR=1500002&CC=EP&KC=A1.....
by running it through a regular expression extractor
/details/bibliographicData(\?.*)"
I call it qString
JMeter does not change the & to & before doing the next http request.
I tried
/bibliographicData${__javaScript('${qString}'.replace(/amp;/g,'')}
and
bibliographicData${__javaScript('${qString}'.split('amp;').join('')}
but they do nothing - so I guess I need to set something up to run beanShell
/bibliographicData${__BeanShell(fixAmps("${qString}"))}
which I would rather not.
I cannot seem to find how and in what order I could use a the
extractor to simply replace & with &
Suggestions are VERY welcome. I am so close but so far away :(
Thanks a LOT in advance
Michel
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]