i have a download button on my Angular project, on click it goes to the server at http://localhost:3000/test/printPolicy , and will get me the pdf content to download it from Angular(Client side). The report is a heavy one and needs around 9000ms to be downloaded.
i added another button but referencing the same method that calls the server at http://localhost:3000/test/printPolicy. (should get me the same report)
On testing: i have clicked the button1 then button2 and my result was: I waited 9000ms to get the first report and another 9000ms to get the second report.
My question is here: What can I do to make them load simultaneously, not having to wait another 9000ms to get the second one.
EDIT -------
Fixed, To test it, open a new browser, dont use the incognito mode of the same browser.