Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any way to throttle calls to a specific API in Chrome DevTools while leaving others unthrottled?

I have a single page application that communicates with a few different APIs, and I am hoping to throttle requests made to a specific one for testing. Is it possible to be domain specific with network throttling using Chrome DevTools?

I know you can throttle the network in Chrome and simulate a slow connection (e.g. Regular 3G connection) via the Network conditions tab, but this affects all requests. I am hoping to just affect one specific API to simulate the situation where this other service is really slow but all others are fine.

like image 798
David Crozier Avatar asked Feb 16 '16 18:02

David Crozier


People also ask

How do I block XHR in Chrome?

Answer. From Chrome 59 you can block specific requests from Network tab of developer tools itself. Right-click on the request in the Network panel and select Block Request URL. A new Request blocking tab pops up in the Drawer, which lets you manage blocked requests.


3 Answers

If you can change the URLs, there's a site http://www.deelay.me/ that is a delay proxy for HTTP resources. For example, if you want URL http://example.com/example to be delayed by 5 seconds, change it to http://www.deelay.me/5000/http://example.com/example.

like image 100
Liron Yahdav Avatar answered Oct 21 '22 00:10

Liron Yahdav


No, Chrome DevTools network throttling does not allow you to do selective throttling.

If you want to simulate specific services being slow and you have them running on your local machine, I would recommend installing a throttling proxy (e.g. Charles proxy).

If those services are deployed and you still want to simulate sluggish response, I would try amending /etc/hosts to point to a local charles proxy as well.

like image 37
Andrey Lushnikov Avatar answered Oct 20 '22 22:10

Andrey Lushnikov


Someone has now built a chrome extension for this - URL Throttler.

like image 16
Tim Avatar answered Oct 20 '22 22:10

Tim