Skip to content

Commit 194b060

Browse files
authored
[rb] fix http proxy configuration for chrome (#13093)
[rb] fix http proxy configuration
1 parent 76ace92 commit 194b060

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rb/lib/selenium/webdriver/common/selenium_manager.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def generate_command(binary, options)
6767
end
6868
if options.proxy
6969
command << '--proxy'
70-
(command << options.proxy.ssl) || options.proxy.http
70+
command << (options.proxy.ssl || options.proxy.http)
7171
end
7272
command
7373
end

0 commit comments

Comments
 (0)