browsermob-proxy icon indicating copy to clipboard operation
browsermob-proxy copied to clipboard

A free utility to help web developers watch and manipulate network traffic from their AJAX applications.

Results 119 browsermob-proxy issues
Sort by recently updated
recently updated
newest added

When trying to start the Selenium Web Driver with BrowserMob in Java I get the following exception: `Exception in thread "main" java.lang.RuntimeException: Could not resolve localhost at net.lightbody.bmp.client.ClientUtil.getConnectableAddress(ClientUtil.java:114) at net.lightbody.bmp.client.ClientUtil.createSeleniumProxy(ClientUtil.java:70)...

I am seeing this error and the proxy is failing to connect to the internet. ![image](https://user-images.githubusercontent.com/914305/82389102-44549b00-9a09-11ea-9e80-6267812426ae.png) ![image](https://user-images.githubusercontent.com/914305/82389150-63532d00-9a09-11ea-9194-3ecdc31b27c5.png) I don't know if this is related, but I am also seeing that...

Would you kindly publish checksums on released artifacts? MD5, SHA1, SHA256 should cover enough ground, and make distribution a tad bit more secure.

PAC file content used as below function FindProxyForURL(url, host) { if (url.substring(0, 3) === "ws:" || url.substring(0, 4) === "wss:") { return "DIRECT"; } else { return "Proxy 127.0.0.1:53316"} }...

All response are saved in the HAR File but the content text is encoded base64 , i try to decoded it always returned invalid format , how can i get...

I'm using browsermob-proxy version 2.1.4 where addHeader and addHeaders are not working. browsermob-proxy + selenium --> Chrome code snippet - ``` browserMobProxy = new BrowserMobProxyServer(); browserMobProxy.start(0); browserMobProxy.addHeader("Host", "www.adobe.com"); ``` I...

I am using a MacBook Air with osX 10.13.5, prowsermob-proxy 2.1.4 (python part 0.8.0), selenium 3.13.0, firefox 61.0.1 and python 2.7.10, and I am trying to run essentially the example...

Hi, We have web application built on HTTP H2 protocol, but when we use Browsermob proxy and browse the application all the web requests are using HTTP 1.1 protocol. When...

When I am calling BrowserMobProxy proxy = new BrowserMobProxyServer(); it is throwing such error: ``` java.lang.ExceptionInInitializerError at net.lightbody.bmp.mitm.tools.DefaultSecurityProviderTool.(DefaultSecurityProviderTool.java:34) at net.lightbody.bmp.mitm.util.TrustUtil.(TrustUtil.java:56) at net.lightbody.bmp.mitm.TrustSource.javaTrustSource(TrustSource.java:103) at net.lightbody.bmp.mitm.TrustSource.(TrustSource.java:39) at net.lightbody.bmp.BrowserMobProxyServer.(BrowserMobProxyServer.java:225)```

Hi, i'm trying to create automation tests for the following scenario: ``` Given i am in "" Given I navigate to the 'Home' page as a logged in user When...