Hey,
I am trying to dump data to a file automatically. I have added the following in " OnBeforeResponse" of fiddler script.
if (oSession.url.Contains("?_ctrl-state=")) { var directory: String = "D:\\me\\usefull\\data"; var path: String = System.IO.Path.Combine(directory, Guid.NewGuid() + ".json"); oSession.utilDecodeRequest(); oSession.utilDecodeResponse(); oSession.SaveSession(path , false); }But when I do File>ExportSession>SelectedSession i can see list of file formats in which the same session data can be stored. Is there any way that i can save the file in HTTP Archive format using the script.
Thanks
Alle