欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

selenium.chrome寫擴展攔截或轉(zhuǎn)發(fā)請求功能

 更新時間:2022年07月22日 14:30:25   作者:正東  
Selenium?WebDriver?是一組開源?API,用于自動測試?Web?應用程序,利用它可以通過代碼來控制chrome瀏覽器,今天通過本文給大家介紹selenium?chrome寫擴展攔截或轉(zhuǎn)發(fā)請求功能,感興趣的朋友一起看看吧

Selenium.WebDriver

Selenium WebDriver 是一組開源 API,用于自動測試 Web 應用程序,利用它可以通過代碼來控制chrome瀏覽器!

有時候我們需要mock接口的返回,或者攔截和轉(zhuǎn)發(fā)請求,今天就來實現(xiàn)這個功能

代碼已開源: https://github.com/yuzd/OpenQA.Selenium.Chrome.Fiddler

nuget

OpenQA.Selenium.Chrome.Fiddler

開始coding

我們新創(chuàng)建一個功能:OpenQA.Selenium.Chrome.Fiddler

一個chrome擴展 最起碼有2個文件

manifest.json

background.js

稍微解釋一下:

manifest.json 是來描述chrome擴展的
{
    "version": "1.0.0",
    "manifest_version": 2,
    "name": "Chrome Fiddler",
    "permissions": [
        "proxy",
        "tabs",
        "unlimitedStorage",
        "storage",
        "<all_urls>",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": ["background.js"]
 },
    "minimum_chrome_version":"22.0.0"
}
background.js 是邏輯處理模塊

因為攔截api 或者 轉(zhuǎn)發(fā) 需要用的chrome的api

chrome.webRequest.onBeforeRequest.addListener(
   function(details) {
      //邏輯處理
   },
   { urls: ['<all_urls>']},
   ['blocking', 'extraHeaders', 'requestBody']
);

這個api的函數(shù) 接收的details參數(shù)

  • details.url 是api的接口

函數(shù)的返回

  • {cancel:true} 攔截請求
  • {redirectUrl:''} 轉(zhuǎn)發(fā)到指定url

寫selenium.chrome插件

  • 新建一個netstand工程,然后引用

Selenium.WebDriver

復制以下代碼

/// <summary>
/// Add Fiddler extention
/// </summary>
/// <param name="options">Chrome options</param>
/// <param name="fiddlerOption">Proxy host</param>
public static void AddFiddler(this ChromeOptions options, FiddlerOption fiddlerOption)
{
    var backgroundProxyJs = ReplaceTemplates(background_js, fiddlerOption);

    if (!Directory.Exists("Plugins"))
        Directory.CreateDirectory("Plugins");

    var guid = Guid.NewGuid().ToString();

    var manifestPath = $"Plugins/manifest_{guid}.json";
    var backgroundPath = $"Plugins/background_{guid}.js";
    var archiveFilePath = $"Plugins/proxy_auth_plugin_{guid}.zip";

    File.WriteAllText(manifestPath, manifest_json);
    File.WriteAllText(backgroundPath, backgroundProxyJs);

    using (var zip = ZipFile.Open(archiveFilePath, ZipArchiveMode.Create))
    {
        zip.CreateEntryFromFile(manifestPath, "manifest.json");
        zip.CreateEntryFromFile(backgroundPath, "background.js");
    }

    File.Delete(manifestPath);
    File.Delete(backgroundPath);

    options.AddExtension(archiveFilePath);
}

private static string ReplaceTemplates(string str, FiddlerOption fiddlerOption)
{
    if (fiddlerOption.OnBeforeRequestOptions != null)
    {
        var beforeConfigs = Newtonsoft.Json.JsonConvert.SerializeObject(fiddlerOption.OnBeforeRequestOptions);
        str = str.Replace("{before_configs}", beforeConfigs);
    }
    return str;
}

上面的代碼主要是創(chuàng)建一個chrome擴展zip包

然后再selenium.chrome啟動的時候傳進去這個zip包的地址

使用方法

var driverBinary = @"D:\soft\chrome\chrome2\Chrome-bin\";
ChromeOptions options = new ChromeOptions
{
    BinaryLocation = Path.Combine(driverBinary, "chrome.exe")
};
Environment.SetEnvironmentVariable("webdriver.chrome.driver", driverBinary);
options.AddArgument("--disable-blink-features=AutomationControlled");
options.AddArguments("--disable-infobars");
List<string> ls = new List<string> { "enable-automation" };
options.AddExcludedArguments(ls);
#region Fillder
options.AddFiddler(new FiddlerOption
{
    OnBeforeRequestOptions = new List<FiddlerOnBeforeRequestOptions>
    {
        // 配置轉(zhuǎn)發(fā)
        new FiddlerOnBeforeRequestOptions
        {
            Match = "https://www.cnblogs.com/yudongdong/ajax/GetPostStat",//正則
            RedirectUrl = "http://localhost:5000/GetPostStat",//如果匹配成功則將requestBody轉(zhuǎn)發(fā)到這個url中去
            Cancel = false//如果配置了cancel=true那么轉(zhuǎn)發(fā)將無效,true的意思是直接攔截這次的請求,不去發(fā)送了
        },
        // 配置攔截
        new FiddlerOnBeforeRequestOptions
        {
            Match = "https://www.cnblogs.com/yudongdong/ajax/blogStats",
            Cancel = true//true的意思是直接攔截這次的請求,不去發(fā)送了
        },
    }
});
#endregion
var chrome = new ChromeDriver(driverBinary, options);

實現(xiàn)效果

到此這篇關于selenium.chrome寫擴展攔截或轉(zhuǎn)發(fā)請求的文章就介紹到這了,更多相關selenium chrome寫擴展攔截或轉(zhuǎn)發(fā)請求內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!

相關文章

最新評論