I'm developing a bot and using webdriver-manager (https://github.com/SergeyPirogov/webdriver_manager) with the purpose to update the chromedriver file. The following error raise after the use of the install() method. The following is the code to open the crhome driver. I use the chrome options to keep the browser open.
chrome_options = Options()
chrome_options.add_experimental_option("detach", True)
self.driver = webdriver.Chrome(self.path, chrome_options=chrome_options, service = Service(ChromeDriverManager().install()))
It generates the following error:
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x03D14A30>: Failed to establish a new connection: [WinError 10060]
I believe this is a proxy error, but I tried to configure a proxy in the environment and it did not worked.