使用ChromeDriver设置browsermob代理

时间:2015-04-29 23:30:13

标签: java selenium-webdriver proxy selenium-chromedriver browsermob

我正在尝试设置browsermob以在我的selenium项目中工作。我一直在寻找使用ChromeOptions设置代理的方法,但所有来源都告诉我将ChromeOptions用于其他所有内容,然后在实例化新的ChromeDriver实例之前将其转换为DesiredCapabilities。

这是我的代码:

ChromeOptions options = new ChromeOptions();
// Setting some chrome features here

ProxyServer proxyServer = new ProxyServer(4444);
proxyServer.start();

Proxy proxy = proxyServer.seleniumProxy();

DesiredCapabilities capabilities = DesiredCapabilities.chrome();

capabilities.setCapability(ChromeOptions.CAPABILITY, options);
capabilities.setCapability(CapabilityType.PROXY, proxy);

WebDriver driver = new ChromeDriver(capabilities); // Error happens here

我正在使用maven存储库中的Webdriver版本2.44。这是我得到的错误:

java.lang.IllegalAccessError: tried to access field com.google.gson.JsonNull.INSTANCE from class org.openqa.selenium.remote.BeanToJsonConverter

是否有人知道将代理连接到chromedriver的原因或任何其他解决方案?

3 个答案:

答案 0 :(得分:2)

如果您使用旧版本的browsermob-proxy,则Selenium的依赖关系和BMP之间可能存在一些冲突。我建议使用最新的Selenium +构建来自master的latest BrowserMob Proxy

拥有最新版本后,您应该可以使用Chrome + BMP"通常"方式:

        BrowserMobProxy proxy = new BrowserMobProxyServer();
        proxy.start(); // can specify a port here if you like

        // get the selenium proxy object
        Proxy seleniumProxy = ClientUtil.createSeleniumProxy(proxy);

        DesiredCapabilities capabilities = new DesiredCapabilities();
        capabilities.setCapability(CapabilityType.PROXY, seleniumProxy);

        // if chromedriver isn't on your system path, you'll need to set this system property
        System.setProperty("webdriver.chrome.driver", "/path/to/chromedriver");
        WebDriver driver = new ChromeDriver(capabilities);

        driver.get("https://www.google.com/");

答案 1 :(得分:2)

ChromeDriver不直接支持代理上限。但确实如此 支持将命令行参数传递给chrome进程。并设置 http代理是chrome命令行开关之一。它可以设置 如下:

DesiredCapabilities caps = DesiredCapabilities.chrome();    
ArrayList<String> switches = new ArrayList<String>();    
switches.add("--proxy-server=localhost:8080");    
caps.setCapability("chrome.switches", switches);    
webDriver = new ChromeDriver(caps);    

答案 2 :(得分:0)

Browsermob-Proxy是一个可靠的解决方案,但是在使用远程网格计算机时,Browsermob-proxy并没有真正的帮助。另外,我发现这是我设置的有效解决方案。

希望这对具有类似设置的人很有用。

  1. 将ModHeader扩展名添加到Chrome浏览器

如何下​​载Modheader?链接

ChromeOptions options = new ChromeOptions();
options.addExtensions(new File(C://Downloads//modheader//modheader.crx));

// Set the Desired capabilities 
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability(ChromeOptions.CAPABILITY, options);

// Instantiate the chrome driver with capabilities
WebDriver driver = new RemoteWebDriver(new URL(YOUR_HUB_URL), options);
  1. 转到浏览器扩展并捕获ModHeader的本地存储上下文ID

Capture ID from ModHeader

  1. 导航到ModHeader的URL以设置本地存储上下文

// set the context on the extension so the localStorage can be accessed
driver.get("chrome-extension://idgpnmonknjnojddfkpgkljpfnnfcklj/_generated_background_page.html");

Where `idgpnmonknjnojddfkpgkljpfnnfcklj` is the value captured from the Step# 2
  1. 现在使用Javascript
  2. 将标头添加到请求中

   ((Javascript)driver).executeScript(
         "localStorage.setItem('profiles', JSON.stringify([{  title: 'Selenium', hideComment: true, appendMode: '', 
             headers: [                        
               {enabled: true, name: 'token-1', value: 'value-1', comment: ''},
               {enabled: true, name: 'token-2', value: 'value-2', comment: ''}
             ],                          
             respHeaders: [],
             filters: []
          }]));");

其中token-1value-1token-2value-2是要添加的请求标头和值。

  1. 现在导航到所需的Web应用程序。

    driver.get("your-desired-website");