JMeter is not accepting variable values for CSRFToken

40 Views Asked by At

I have created variable named token. enter image description here

I have added token in next step ie login step parameter. enter image description here

But it is not accepting the token value saved in variable. It is displaying 'token' term and login step look failed. It should take the values of regular expression field shown in first image. enter image description here

1

There are 1 best solutions below

1
On

Most probably JMeter "is not accepting" the variable because your Regular Expression Extractor fails to find anything matching the regular expression you've provided in the response headers.

We cannot suggest an appropriate configuration without seeing what does the token look like in the response, my assumption is that:

  1. It looks like you're trying to extract a value from an HTML input, in this case you need to switch "Field to check" to Body

    enter image description here

  2. It's not recommended to use regular expressions for extracting data from HTML, it might be a better idea to consider switching to CSS Selector Extractor instead. And in case if there are multiple inputs (and I believe this is the case) you should provide an unique filter like input's name or ID or whatever, otherwise you will get the first match.