1

I'm performing Load testing of Web Applications using Loadrunner,while running the scripts it is downloading all the resources available for particular screen or pages because of this response time is taking more,Can anyone please help me how to control this type of problems in Web Application Load Testing using Loadrunner.

web_url("Search Customer",
"url=http://ipaddress:portnumber/searchCustomer",
"Url=Images/snapshot.jtl,
"Url=Images/file.css",
"Url=Images/jscript.js"
);
Rajesh Om
  • 483
  • 2
  • 15
  • 39
  • Since the resources are part of the page you absolutely must download them during a load test, otherwise you are not really testing anything. If you still think it is a good idea to remove them, just remove the appropriate line with the resource name from the script. – Buzzy Dec 17 '17 at 06:11
  • Please let us know where you're working so someone can come behind you and fix any issues on the resources you are not downloading (size, complexity, cache age, etc....) – James Pulley Dec 18 '17 at 22:25

1 Answers1

1

Open the Run Time Settings Menu > Under Browser > Browser Emulation > Uncheck the "Download non-HTML resources" option:

enter image description here

Koby Douek
  • 16,156
  • 19
  • 74
  • 103
  • Now, how will you find issues associated with the performance of the static resources, such as too large, botched cache plan, etc...? – James Pulley Dec 29 '17 at 12:24