Hello! How to use proxy in Selenium? I looked on the Internet, that's what I found:
FirefoxProfile profile = new FirefoxProfile (); Proxy proxy = new Proxy (); proxy.HttpProxy = "localhost:8080"; profile.SetProxyPreferences (proxy); IWebDriver driver = new FirefoxDriver (profile); But I get this error

