This is a migrated thread and some comments may be shown as answers.

How to enable Automatic Breakpoints by default?

3 Answers 226 Views
Fiddler Classic
This is a migrated thread and some comments may be shown as answers.
Lior
Top achievements
Rank 1
Lior asked on 27 Dec 2019, 10:55 PM

When launching Fiddler "Automatic" Breakpoints are always set to "Disabled".

How can they be enabled to either "Before Responses" or "After Responses by default?

3 Answers, 1 is accepted

Sort by
0
Boby
Telerik team
answered on 30 Dec 2019, 07:17 AM

Hi Lior,

You can use FiddlerScript to modify the settings by adding the following to OnBoot method:

    static function OnBoot() {
            FiddlerApplication.Prefs.SetBoolPref("fiddler.ui.ephemeral.rules.breakonresponse", true);
            // or
            // FiddlerApplication.Prefs.SetBoolPref("fiddler.ui.ephemeral.rules.breakonrequest", true);

 

Regards,
Boby
Progress Telerik

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Lior
Top achievements
Rank 1
answered on 30 Dec 2019, 07:46 PM

Interesting!

Should it be put in Rules=>Customize Rules?

0
Boby
Telerik team
answered on 02 Jan 2020, 06:53 AM

Hi Lior,

Yes, this is one way to open the script editor for the default loaded FiddlerScript.

Regards,
Boby
Progress Telerik

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Fiddler Classic
Asked by
Lior
Top achievements
Rank 1
Answers by
Boby
Telerik team
Lior
Top achievements
Rank 1
Share this question
or