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
Nevermind, I found the answer myself:
ChromeOptions options = new ChromeOptions(); options.setBinary("/path/to/chrome/binary"); ChromeDriver driver = new ChromeDriver(options);
Chromedriver docs