selenium chromedriver example

Example 1: selenium set chrome executable path

chromedriver = "/path/to/chromedriver"
options = Options()
options.binary_location = '/path/to/chrome'
driver = webdriver.Chrome(chromedriver, chrome_options=options)

Example 2: selenium chromedriver

Supports Chrome version 89
Resolved issue 3667: Timed out receiving a message from rendererResolved issue 3675: GetElementLocation uses inView method which mishandles boolean as arrayResolved issue 3682: GetElementRegion returns incorrect size for elements which are partially out of viewportResolved issue 3690: ChromeDriver fails if extensions use chrome.windows API

Example 3: selenium set chrome executable path

ChromeOptions options = new ChromeOptions();
options.setBinary("/path/to/chrome/binary");

ChromeDriver driver = new ChromeDriver(options);