1chromedriver = "/path/to/chromedriver"
2options = Options()
3options.binary_location = '/path/to/chrome'
4driver = webdriver.Chrome(chromedriver, chrome_options=options)
5
1ChromeOptions options = new ChromeOptions();
2options.setBinary("/path/to/chrome/binary");
3
4ChromeDriver driver = new ChromeDriver(options);
5