Skip to content

Commit

Permalink
[rb] fix http proxy configuration for chrome (#13093)
Browse files Browse the repository at this point in the history
[rb] fix http proxy configuration
  • Loading branch information
joromero committed Nov 6, 2023
1 parent 76ace92 commit 194b060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rb/lib/selenium/webdriver/common/selenium_manager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def generate_command(binary, options)
end
if options.proxy
command << '--proxy'
(command << options.proxy.ssl) || options.proxy.http
command << (options.proxy.ssl || options.proxy.http)
end
command
end
Expand Down

0 comments on commit 194b060

Please sign in to comment.