如何从FiddlerScript在OnBeforeResponse函数中添加ExportToHAR

时间:2018-10-10 00:48:44

标签: fiddler jscript jscript.net

我正在尝试通过FiddlerScript自动记录会话HAR文件,但是遇到了问题。

他们从帮助文档中给出了以下参考:

var oExportOptions = FiddlerObject.createDictionary(); 
oExportOptions.Add("Filename",filePath + full_txtName + ".har");
oExportOptions.Add("MaxTextBodyLength",1000000);
oExportOptions.Add("MaxBinaryBodyLength",1000000000);
FiddlerApplication.DoExport("HTTPArchive v1.2",oSessions,oExportOptions,null);

在DoExport函数中,oSessions对象是Session [],但是OnBeforeResponse的对象是Session,而不是Session []。如何转换它或使用Session对象构造Session []?或任何其他方法的帮助。谢谢!

0 个答案:

没有答案