Home > other >  Load (Performance) Testing of Single Page Application (SPA)
Load (Performance) Testing of Single Page Application (SPA)

Time:10-26

I want to perform Load (Performance) Testing of Single Page Application (SPA). Also want to record the performance metrics. I have found that JMeter performs load testing for API calls but not actual browser for SPA.

Could you please suggest any opensource or paid alternatives which i can use to perform load testing of SPA for concurrent 500 users.

Thanks

CodePudding user response:

What do you mean by "actual browser"?

Given you configure JMeter to behave like a real browser there won't be any difference from the "SPA" whether it's accessed by JMeter or by the real "actual browser"

If your requirement is to use 500 "actual browsers" for testing your SPA you can take a look at WebDriver Sampler which provides JMeter integration with Selenium browser automation framework.

But remember about browser resources footprint and the fact you won't be able to collect the majority of metrics using this approach.

  • Related