I need to extract the value - logged_user=vnahjefguzGCVke8MSyLqg%3D%3D
from the html result. refer the imageResponse
Any suggestion
I need to extract the value - logged_user=vnahjefguzGCVke8MSyLqg%3D%3D
from the html result. refer the imageResponse
Any suggestion
The first suggestion is don't post code as the image
When it comes to extracting the logged user from the response you have 2 options:
Regular Expression Extractor configured like:
textual representation of the regular expression just in case:
logged_user=(.+?)&
Or Boundary Extractor configured like:
In both cases you will be able to access the extracted value as ${logged_user} where required