I'm fairly new to JMeter so I've got stuck on the most obvious scenario - log in.
I've recorded the scenario via jmeter, and there were 3 send parameters on log in: username, password and CSRF-Token, so I have next scenario:
- Load login page (GET) + Regular expression extractor (receiving CSRF token from cookies)
- POST username, password and csrf-token received in the previous step
But still I receive a 'CSRF token is missing' in logs despite that it's sent in parameters. Seems like I send not enough cookies, but I simply don't know how to send more :D
And the second problem: I receive set of tokens divided with ':' and on actual log in, it takes one of the tokens from the list. How can I do the same? Currently, I'm taking only the 1st CSRF token from the set.