Skip to content

Commit b49da80

Browse files
djbrowndiemol
andauthored
fix property name (#12237)
Co-authored-by: Diego Molina <[email protected]>
1 parent 6d22309 commit b49da80

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/selenium/webdriver/common/selenium_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def driver_location(self, options: BaseOptions) -> str:
8787
proxy = options.proxy
8888
if proxy and (proxy.http_proxy or proxy.ssl_proxy):
8989
args.append("--proxy")
90-
value = proxy.ssl_proxy if proxy.sslProxy else proxy.http_proxy
90+
value = proxy.ssl_proxy if proxy.ssl_proxy else proxy.http_proxy
9191
args.append(value)
9292

9393
if logger.getEffectiveLevel() == logging.DEBUG:

0 commit comments

Comments
 (0)