Fiddler Ideas

The free web debugging proxy for any browser, system or platform.

Cannot choose response in AutoResponder Rule Editor

AutoResponder Rule Editor only shows the URL match field, and the "Test..." option.

The combo to choose a pre-defined response and the Edit Response button don't show up (and the panel cannot be resized)!

This seems to be new in v5.0.20181.14850, as it never occurred with older versions.

  • Guest
  • May 3 2018
  • Under review
Bug
  • Attach files
  • Eric Lawrence commented
    May 04, 2018 18:54

    FWIW, you may be able to workaround this in a very hacky way in C# FiddlerScript, add the following to Handlers:

     

    [ToolsAction("FixPanelHeight")]
    public static void DoFix(){
    foreach (Control c in FiddlerApplication.UI.tabsViews.Controls) {
    if (c.Name == "pageResponder") foreach (Control d in (c.Controls[0] as UserControl).Controls)
    if (d.Name == "pnlAutoResponders") foreach (Control e in (d as Panel).Controls) {
    FiddlerApplication.Log.LogString(e.Name);
    if (e.Name == "gbResponderEditor") {
    e.Height=e.Height+120;
    e.Top=e.Top-120;
    }
    }
    }
    }

     

    Save the script, then click "FixPanelHeight" on the Tools menu. Adjust the values for the Height and Top as appropriate.

  • Eric Lawrence commented
    May 04, 2018 18:34

    Unfortunately, I've heard of this problem popping up in occasionally before, usually on systems in China where the user doesn't have Fiddler's default font. If you play with the Font/FontSize inside Tools > Fiddler Options > Appearance *and restart* Fiddler, is there any change?