0
votes

The response I get back from a post is just a plain text guid seen here I'd like to pull this guid and use it in a variable for my following Get statement: post response data

And I've tried a bunch of configurations in my regular expression extractor. But it just ends up pulling Null when what I want is that guid. Null

I'm new to jmeter - so thank you in advance for the help.

1

1 Answers

1
votes

If you need the whole response use the following Regular Expression Extractor configuration:

  • Reference Name: response
  • Regular Expression: (?s)(^.*)
  • Template: $1$

Regular Expression Configuration

As per How to Extract Data From Files With JMeter guide:

() = grouping

(?s) = single line modifier

^ = line start

. = wild-card character

* = repetition

So it will return the whole response.