browsermob-proxy
browsermob-proxy copied to clipboard
A free utility to help web developers watch and manipulate network traffic from their AJAX applications.
Hi, I'm trying to implement the browsermob api in an Android App. It looks like it is starts the Proxy, but everytime I set the Proxy in the Wifi settings...
It is under VPN network so I use API setChainedProxy to set upstream proxy . This method has been worked well before. But now failed with proxy error "ERR_EMPTY_RESPONSE". Could...
I am using browser mob 2.1.5 with Selenium in Java and trying to capture the body of requests in FireFox on a remote Selenium Server. The requests are sent to...
When you set chrome_ options.add_ experimental_ When option ("debugger address", "127.0.0.1:9222"), the agent cannot get the request information? chrome_options = Options() chrome_options.add_experimental_option("debuggerAddress", "127.0.0.1:9222") chrome_options.add_argument('--ignore-certificate-errors') chrome_options.add_argument('--proxy-server={0}'.format(proxy.proxy)) ... ... result = proxy.har...
Using the latest release of BMP 2.1.2, I was able to resolve the issue reported earlier (https://github.com/lightbody/browsermob-proxy/issues/492) when running tests from my local machine. Today, when I deployed this change...
Is it possible to chain BMP to a socks5 upstream proxy?
Small change to allow setting the `transparent` flag on the LittleProxy instance
I met a website. After using browsermobproxy for data acquisition, I can't drag the progress bar to the bottom to load the next page of data. It's OK not to...
In my project, the automation tests are written in typescript and have used jest as the framework. I want to add request header for certain POST request made while running...
I can able to run and get Response Header Using browsermob and selenium using following code ``` DesiredCapabilities capabilities = new DesiredCapabilities(); BrowserMobProxy proxy = getProxyServer(); //getting browsermob proxy Proxy...