Reputation: 11
facing issue in below question, how to set the proxy settings?
//sample code to add new proxy settings
firefoxProfile.SetPreference(“network.proxy.http_port”, 8080);
Upvotes: 1
Views: 5135
Reputation: 51
what worked for me: use FirefoxOptions
instead of FirefoxProfile
:
var options = new FirefoxOptions();
Proxy proxy = new()
{
HttpProxy = "xxxxxxx"
};
options.Proxy = proxy;
var driver = new FirefoxDriver(options);
Upvotes: 1
Reputation: 508
Check the code shared in this answer.
//Code copied from the above link
FirefoxProfile profile = new FirefoxProfile();
String PROXY = "xx.xx.xx.xx:8080";
OpenQA.Selenium.Proxy proxy = new OpenQA.Selenium.Proxy();
proxy.HttpProxy=PROXY;
proxy.FtpProxy=PROXY;
proxy.SslProxy=PROXY;
profile.SetProxyPreferences(proxy);
FirefoxDriver driver = new FirefoxDriver(profile);
Set PROXY
to your proxy server address.
For Java Users
String PROXY = "proxyserver:9999";
org.openqa.selenium.Proxy proxy = new org.openqa.selenium.Proxy();
proxy.setHttpProxy(PROXY);
proxy.setFtpProxy(PROXY);
proxy.setSslProxy(PROXY);
org.openqa.selenium.remote.DesiredCapabilities cap = org.openqa.selenium.remote.DesiredCapabilities.firefox();
cap.setCapability(org.openqa.selenium.remote.CapabilityType.PROXY, proxy);
org.openqa.selenium.WebDriver driver = new org.openqa.selenium.firefox.FirefoxDriver(cap);
Upvotes: 1