Şifreli proxyler için seleniumwire veya eklenti kullana bilirsin

from seleniumwire import webdriver

proxy_options = {
        'proxy': {
            'http': 'http://user:pass@ip:port',
            'https': 'https://user:pass@ip:port',
            'no_proxy': 'localhost,127.0.0.1'
        }
}

driver = webdriver.Chrome(seleniumwire_options=proxy_options)