Hello, im new here I just wanted to save a specific file with FiddlerScript but it seems not working what did I do wrong ?
public static void OnBeforeResponse(Session oSession){ if (m_Hide304s && oSession.responseCode == 304) { oSession["ui-hide"] = "true"; } if (oSession.url.Contains("/my.task/")) { var directory: String = "c:\\sources\\"; var path: String = System.IO.Path.Combine(directory + ".json"); oSession.utilDecodeResponse(); oSession.SaveResponseBody(path); }}
