How to configure https proxy with auth in firefox? Tried this
proxy = '176.119.142.65:10325'
firefox_capabilities['proxy'] = {
"proxyType": "MANUAL",
"httpProxy": proxy,
"ftpProxy": proxy,
"sslProxy": proxy,
"socksUsername": 'levautkin8279',
"socksPassword": 'qwerty'
}
But receive error:
selenium.common.exceptions.InvalidArgumentException: Message: Invalid proxy configuration entry: socksPassword
Is way to fix it or another way to use proxy with auth?
seleniumwire works not good