onbeforerresponse有它通过参数url在excel而不是在chrome中打开

本文关键字:chrome excel 参数 onbeforerresponse url | 更新日期: 2023-09-27 18:04:21

如果你知道OnBeforeResponse,那么你就知道我在做什么。

我如何使它粘贴URL在excel文件,而不是打开每一个URL在chrome或Firefox

  if(oSession.url.Contains(".mp3")){
            FiddlerApplication.Log.LogFormat("downloading "+oSession.url);
            System.Diagnostics.Process.Start("chrome.exe",oSession.url);
        }

我已经试过了。

 if(oSession.url.Contains(".mp3")){
            FiddlerApplication.Log.LogFormat("downloading "+oSession.url);
            System.Diagnostics.Process.Start("excel.exe",oSession.url);
        }

我也试图使用cmd.exe输出每个oSession.url> somefile.txt.

onbeforerresponse有它通过参数url在excel而不是在chrome中打开

我也在尝试cmd.exe输出每个session。> somefile.txt.

如果您只是试图将MP3 url抓取到文件中以供以后使用,那么将它们输出到somefile.txt的想法似乎比尝试从FiddlerScript与Excel交互更简单。

添加以下行(到您的代码中),完成将最新的MP3 url附加到somefile.txt(注意:我将文本文件放在特定的文件夹中):

System.Diagnostics.Process.Start("cmd.exe", "/c echo " + oSession.url + " >> c:''temp''somefile.txt") 

当您单击时,该文件将累积MP3 url。

可能你需要这个使用fiddler自动下载mp3