As a developer of an Excel parser, I have noticed that when the browser tab containing the parser is not active (meaning I am on another tab), the requests are processed more slowly.
In my process, I use Axios for sending requests and implement an async loop. Each request waits for the previous one to resolve before proceeding.
It has been observed that when the tab with the parser is active and I am actively monitoring the results, the requests execute seamlessly without any delays. However, when the tab is inactive, there are noticeable breaks of a few seconds between each request execution.