Skip to content Skip to sidebar Skip to footer

Selenium - Socket.error: [errno 111] Connection Refused

I'm trying to create Selenium tests for my web application. So far I have: from selenium import webdriver import httplib driver = webdriver.Chrome('v1/chromedriver-Linux64') #in t

Solution 1:

You've chrome driver which doesn't support your version of chrome browser. v65-67 is supported by chromedriver 2.38. so it seems a config issue. Use below to install latest version of chrome driver.

http://chromedriver.chromium.org/downloads

Post a Comment for "Selenium - Socket.error: [errno 111] Connection Refused"