I\'m using the portable version of Google Chrome.
Since WebDriver expects the default installation path, it does not find the portable one which obviously is at anot
Python version:
chromedriver = "/path/to/chromedriver" options = Options() options.binary_location = '/path/to/chrome' driver = webdriver.Chrome(chromedriver, chrome_options=options)