Anybody here into Selenium?

IMShane

Junior Member
Joined
Sep 20, 2011
Messages
131
Reaction score
23
I'm trying to figure out how to setup private proxies such as "user:p[email protected]:8029"for Firefox Driver Profile, but had no luck searching around for the last several days. Anybody knows how to do it?
 
Last edited:
If you are behind an HTTP proxy that requires authentication, you would also need to set http.proxyUser and http.proxyPassword in addition to http.proxyHost and http.proxyPort.

An example:
java -jar selenium-server.jar -Dhttp.proxyHost=my.proxy.com -Dhttp.proxyPort=8080 -Dhttp.proxyUser=my_username -Dhttp.proxyPassword=my_password
 
I assume you are talking about using this with Selenium's webdriver.

I'm trying to do the exact same thing and I haven't found a solution yet.

I'm using webdriver with .net and c#

If I find a solution, I'll let you know.

Dirk
 
Back
Top