хромированный драйвер. exe : -)
Моя настройка с моим собственным профилем Chrome:
// path to chromedriver.exe
System.setProperty("webdriver.chrome.driver", "C:\\Users\\pburgr\\Desktop\\chromedriver\\chromedriver.exe");
// new instace of ChromeOptions
ChromeOptions options = new ChromeOptions();
// add arg to load Chrome with my own profile instead of a temporary profile
options.addArguments("user-data-dir=C:\\Users\\pburgr\\AppData\\Local\\Google\\Chrome\\User Data");
// new instance of ChromeDriver with added args
driver = new ChromeDriver(options);
// maximaze current window, can be used later again if window get minimaze or after a new window is opened (in Chrome no switch is needed)
driver.manage().window().maximize();