We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33009b4 commit f5d9f02Copy full SHA for f5d9f02
browsermobproxy/client.py
@@ -30,7 +30,10 @@ def selenium_proxy(self):
30
Returns a Selenium WebDriver Proxy class with details of the HTTP Proxy
31
"""
32
from selenium import webdriver
33
- return webdriver.Proxy({"httpProxy": self.proxy})
+ return webdriver.Proxy({
34
+ "httpProxy": self.proxy,
35
+ "sslProxy": self.proxy,
36
+ })
37
38
def webdriver_proxy(self):
39
0 commit comments