JS · April 12, 2021 0

How to set conditional beakpoints in chrome

Chrome allows you to add conditional breakpoints so you can pause the execution on based of condition.
For example if you have 3 apis responses and you want to pause execution only when api.url = ‘lempjs.com’, it is quite possible

What you need to do it add breakpoint. right click on it to edit and simply add your condition here

In above example field is in scope of function/script. So when chrome ll reach to line 327, it ll evaluate the field.collection_id, if it is equal to ‘new_style_brand_delivery_areas’, it ll pause the execution.

Note: You need to use single equal sign for comparing, you can use other expressions as well like count > 3

Result