I updated my OSX to Mountain Lion yesterday and now my Selenium tests stopped working with Chrome. I re-installed the newest Chromedriver to /usr/local/bin and python selenium from pip.
I'm using the stock python 2.7 of mountain lion.
This python code used to work:
from selenium import webdriver
browser = webdriver.Chrome()
Now nothing happens. After a while I get the following exception:
WebDriverException: Message: u'Unable to either launch or connect to Chrome. Please check that ChromeDriver is up-to-date. Using Chrome binary at: /Applications/Google Chrome.app/Contents/MacOS/Google Chrome'
It works with Firefox. But Firefox returns some texts that contain <br> differently which causes my tests to fail. So I cannot just switch to Firefox.