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 bbd201b commit 9eeb0fdCopy full SHA for 9eeb0fd
py/selenium/webdriver/common/proxy.py
@@ -101,11 +101,11 @@ def __init__(self, raw=None):
101
if 'autodetect' in raw and raw['autodetect'] is not None:
102
self.auto_detect = raw['autodetect']
103
if 'socksProxy' in raw and raw['socksProxy'] is not None:
104
- self.socksProxy = raw['socksProxy']
+ self.socks_proxy = raw['socksProxy']
105
if 'socksUsername' in raw and raw['socksUsername'] is not None:
106
- self.socksUsername = raw['socksUsername']
+ self.socks_username = raw['socksUsername']
107
if 'socksPassword' in raw and raw['socksPassword'] is not None:
108
- self.socksPassword = raw['socksPassword']
+ self.socks_password = raw['socksPassword']
109
110
@property
111
def proxy_type(self):
0 commit comments