i am trying to use browsermob for manipulating http request, but I found it seems not working on remote mode, any one has any idea on this? appreciates!

it is working fine locally WebDriver driver = new FirefoxDriver(capabilities)

but actually on our working environment, we always run the case on a remote server,like this: WebDriver driver = new RemoteWebDriver(new URL("http://d-sjc-00517444.corp.com:4444/wd/hub"),capability);

then firefox cannot open the page said:

The proxy server is refusing connections Firefox is configured to use a proxy server that is refusing connections. Check the proxy settings to make sure that they are correct. Contact your network administrator to make sure the proxy server is working.

link|improve this question
What do you mean by "not working on remote mode". Do you have details? – Tichodroma Feb 1 at 12:16
What are you doing and how are you doing it? – AutomatedTester Feb 1 at 12:35
feedback

1 Answer

Plain guessing:

  • Your application can be behind firewall, so if you are testing it via webdriver, you are inside intranet and if you do it remotely, you can face issues, that the app cannot be found outside the internet

  • You do something when initializing the ScreenShotRemoteWebDriver

But without details, its almost impossible to provide any solution

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.