urllib3.exceptions.ProtocolError: ('Connection aborted.', error(10054, 'An existing connection was forcibly closed by the remote host'))
问题 I am trying to open a website on chrome using Python Selenium chromedriver. Chrome browser is opening (with warnings) and the url is not opening. Version details : Chrome : 68.0.3440.106 selenium : 3.14.0 chromedriver : 2.20 python : 2.7 I am using below code : import time from selenium import webdriver import selenium driver = webdriver.Chrome(\"C:/Python27/chromedriver.exe\") driver.get(\"https://vancouver.craigslist.ca/\") print(driver.title) time.sleep(8) driver.quit() I am getting below