I am trying to add proxies in Firefox driver (which do have authentication). Though I set the proxy by the below code, it is not clear to add authentication for the proxies.
myProxy = "xxx.xxx.xxx.xxx:80"
proxy = Proxy({
'proxyType': ProxyType.MANUAL,
'httpProxy': myProxy,
'ftpProxy': myProxy,
'sslProxy': myProxy,
'noProxy': ''
})
driver = webdriver.Firefox(proxy=proxy)
I have gone through this answer for authentication but it is also not working.
Any help will be appreciated.
Thanks in advance