I want to call Fiddler from an automation script, and store data in a specific location on the C drive. The default location is specified below. I can override this by changing CONFIG.GetPath(“Captures”) to something like c:FiddlerDataCaptures in the below script.
But how do I change the CONFIG paths themselves? I can’t find any way to do that. Do I need to update the registry?
case "dump":
UI.actSelectAll();
UI.actSaveSessionsToZip(CONFIG.GetPath("Captures") + "dump.saz");
UI.actRemoveAllSessions();
FiddlerObject.StatusText = "Dumped all sessions to " + CONFIG.GetPath("Captures") + "dump.saz";
return true;