I\'m trying to use socks5 proxy on my remote driver which is hosted as a docker container on port 4444.
here is code-sample:
from selenium import we
I suggest you to add the configuration of your proxy in docker config.json file:
config.json
{ "proxies": { "default": { "httpProxy": "socks5://127.0.0.1:9050", "httpsProxy": "socks5://127.0.0.1:9050" } } }
and remove it from your python script