JMETER - capture text from class name tags after?

Viewed 17

I need to extract the value - logged_user=vnahjefguzGCVke8MSyLqg%3D%3D

from the html result. refer the imageResponse

Any suggestion

1 Answers

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:

  1. Regular Expression Extractor configured like:

    enter image description here

    textual representation of the regular expression just in case:

    logged_user=(.+?)&
    
  2. Or Boundary Extractor configured like:

    enter image description here

In both cases you will be able to access the extracted value as ${logged_user} where required

Related