Closed mar-97 closed 1 year ago
The ProxyHandler has been moved from urllib2 to urllib.request in Python3. This needs to be updated in __get_handlers method in ucsdriver.py.
__get_handlers
ucsdriver.py
import urllib.request proxy_handler = urllib.request.ProxyHandler( {'http': self.__proxy, 'https': self.__proxy})
import urllib.request
proxy_handler = urllib.request.ProxyHandler( {'http': self.__proxy, 'https': self.__proxy})
This issue is stale because it has been open for 60 days with no activity.
This issue was closed because it has been inactive for 14 days since being marked as stale.
The ProxyHandler has been moved from urllib2 to urllib.request in Python3. This needs to be updated in
__get_handlers
method inucsdriver.py
.import urllib.request
proxy_handler = urllib.request.ProxyHandler( {'http': self.__proxy, 'https': self.__proxy})