Unanswered question

Cookie Value is not updated when validating the user path

I have recorded an application that has login cookie values (like authenticationtoken). This cookie has to be updated everytime I run the recorded userpath. But the cookie value remains the same as the recorded request due to which I am facing an authentication issue. Please help. (Refer RecordedCooke.PNG and ResponseCookie.PNG)
In Addition to that, when I record the application some requests that are captured in fiddler are missing in neoload. (Fiddler.PNG and RequestList.PNG)

Nandini S.
Nandini S.

Nandini S.

Level
0
1 / 100
point

Answers

NeoLoad handles server cookies. The first thing to check if your value is coming from the server through a "Set-Cookie".  If yes then is it the same value sent by the server?

If not then it means that it's a client cookie. In that case you have to manually manage that value. If the value is coming from a server response then you can simply correlate that value. If not then it's probably generated through a client Javascript.

You need to find that JS in the previous pages and the code that generates that value. Then the goal would be to use that code (with some modifications) in order to use it in a NeoLoad Javascript to generate your value.