Magnus Jensen
Magnus Jensen

Reputation: 993

Correlation in general for LoadRunner

In general could anything coming from the server be correlated? All unique values being recorded could be correlated as long as it is created server side and passed in the server response? Spesific for correlating values in the http headers returned from the server one would use "scope=headers" right? What kind of other values could "scope" have? I know of body, but are there others?

It is not possible to correlate values generated client side by i.e. a JavaScript?

Upvotes: 0

Views: 539

Answers (1)

James Pulley
James Pulley

Reputation: 5692

Correlated values are returned from the server inside of the HTTP response stream. If you need a value from Javascript then you have a couple of paths

  • Convert your javascript function to the language of your virtual user (C, VB, Java, etc...)
  • Run truClient, which executes JavaScript as a full blown browser.

Upvotes: 1

Related Questions