Questions tagged [browsermob]

BrowserMob Proxy is a simple utility that makes it easy to capture performance data from browsers.

BrowserMob Proxy uses web automation utilities like Selenium to capture performance data in the HAR format. It can be integrated in a Java application or interacted through the REST interface.

It addition it also can actually control HTTP traffic, such as:

  • blacklisting and whitelisting certain URL patterns
  • simulating various bandwidth and latency
  • remapping DNS lookups
  • flushing DNS caching
  • controlling DNS and request timeouts
  • automatic BASIC authorization
127 questions
0
votes
1 answer

BrowserMob is not allowing https connections to open via Selenium

I am trying to capture https traffic using selenium but is not able to capture it. Http traffic is captured correctly but having issue with https traffic. Get the same message on both chrome and firefox 'Oops. Something went wrong. Firefox can't…
Mamta Garg
  • 141
  • 1
  • 1
  • 6
0
votes
1 answer

Does Browser mob proxy supports capturing network traffic for applications running on localhost?

I am working upon designing an automatic client side performance tracking tool. I saw browsermob proxy alongwith selenium can be used for writing such tests. But, i am wondering if :- Can BMP+Selenium be used for capturing network traffic for…
Giriraj Sharma
  • 305
  • 3
  • 13
0
votes
3 answers

BrowserMob Proxy’s - WebDriver / Error: The proxy server is refusing connections

I try to use BrowserMob Proxy’s with WebDriver. I use the next code: public static void main(String[] args) throws Exception { String strFilePath = ""; // start the proxy ProxyServer server = new ProxyServer(4455); …
Or Smith
  • 3,178
  • 12
  • 33
  • 60
0
votes
1 answer

Is it possible to run browsermob .net on aws windows jenkins/selenium 2 grid instance?

I have setup a Windows Server 2012 instance on AWS and I am running Jenkins with a Selenium grid server. The build portion goes through fine, however it is failing with a 404 when it tries to call the browserMob.NET server.CreateProxy() call. I…
xtr33me
  • 764
  • 1
  • 10
  • 30
0
votes
1 answer

browsermob with selenium firefoxdriver issue

public class PerfTestt { public static void main(String[] args) throws Exception { ProxyServer server = new ProxyServer(8080); server.start(); Proxy proxy = server.seleniumProxy(); DesiredCapabilities capabilities = new…
0
votes
1 answer

How can I route all of my Macs traffic through browsermob proxy in code?

I'm trying to automate some tests on an iOS simulator, and I want to route traffic through browsermob proxy. As you can't set a proxy on the simulator, I think the best approach would be to route all of the traffic on the Mac it is running on…
user650309
  • 2,142
  • 6
  • 25
  • 45
-1
votes
1 answer

Capture post request payload from web browser network traffic using automation

I am not able to capture POST request payload which is sent by chrome browser for forms. I have tried Browser mob proxy but it only captures in har file the request url, response code but not request payload. I want to validate the request payload…
1 2 3
8
9