static function OnBeforeRequest(oSession: Session)
if(oSession.HostnameIs("mywebsite") && oSession.HTTPMethodIs("POST") && oSession.uriContains("/some.web/data/Entry/Validate"))
{
oSession.utilDecodeResponse();
var body = oSession.GetResponseBodyAsString();
try {
var dataJson = Fiddler.WebFormats.JSON.JsonDecode(body).JSONObject;
var Co = (null); // HERE I MUST REPLACE WITH (null)
var Cap = MY-VALUE-HERE-LETTERS-AND-NUMBERS; //EXAMPLE: FATH45786544565342U7
dataJson["Dispo"]["{}"]["Ben"]["Co"] = Co;
dataJson["Dispo"]["{}"]["Ben"]["Cap"] = Cap;
}
catch(e) {
FiddlerObject.log(e);
}
body = Fiddler.WebFormats.JSON.JsonEncode(dataJson);
}
///// i want to place the code in fiddler-script JS //// please help me with a solution ! i am also ready to pay in btc for who want to help me ! thank you in advice !

if (oSession.uriContains("keyword")) {
oSession["x-replywithfile"] = "D:/content.html";
}if (oSession.uriContains("keyword")) {
oSession["x-replywithfile"] = "https://www.domain.com/content.html";
}The live traffic pane is showing a spinning animation as if it is loading something. It keeps going like this in a loop.
Please see attached image.

I use fiddler can capture most of the traffic , such as:
https://freetestdata.com/wp-content/uploads/2022/02/Free_Test_Data_7MB_MP4.mp4
in the console of the chrome, I can see the media size , and can capture it in fiddler;
but I can't capture the video in web.telegram.org/z/ or web.telegram.org/k/ , in the console of chrome it shows serviceworker and I can't see the size of the media; The video can play , why can't capture it? How does the video stream send request and come back from the site?
Can I capture the video in telegram ? or save the video stream?

Hello,
where can I find all the possible prefs for Fiddler? I found a lot in a random ebook, but is there a documentation or source code where a list of all of them can be found? E.g. I know there's fiddler.config.path.captures, but is there one for the CustomRules.js or just the whole Documents folder in general?
Regards

Hello,
I am using Fiddler Everywhere and would like to do automated testing.
I found this on your blog: https://www.telerik.com/blogs/api-testing-with-telerik-fiddler#disqus_thread
However, I do not have the "API Test" tab. I would appreciate any help you can give me.
Thank you


I have a device that broadcasts a "discovery" packet to port 5556 and would like to capture that. How do i go about doing so?
I have tried to run code and output log messages from OnWebSocketMessage() and OnBeforeResponse() but its not being apparently executed and no messages are in Log tab at all... so it just seems like its not even executing script file