From ae6662d9a47abb523227059a7b8e1c005bde2ceb Mon Sep 17 00:00:00 2001 From: Daniel Brown Date: Thu, 22 Jun 2023 00:56:53 +0200 Subject: [PATCH] fix property name --- py/selenium/webdriver/common/selenium_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/selenium/webdriver/common/selenium_manager.py b/py/selenium/webdriver/common/selenium_manager.py index 43e7b85be84f4..8a1b0bb6f4afb 100644 --- a/py/selenium/webdriver/common/selenium_manager.py +++ b/py/selenium/webdriver/common/selenium_manager.py @@ -87,7 +87,7 @@ def driver_location(self, options: BaseOptions) -> str: proxy = options.proxy if proxy and (proxy.http_proxy or proxy.ssl_proxy): args.append("--proxy") - value = proxy.ssl_proxy if proxy.sslProxy else proxy.http_proxy + value = proxy.ssl_proxy if proxy.ssl_proxy else proxy.http_proxy args.append(value) if logger.getEffectiveLevel() == logging.DEBUG: