Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion py/selenium/webdriver/common/selenium_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down