How do I enable Selenium in Chrome?
Let’s look at how to use ChromeDriver to run Selenium scripts on a Chrome browser.
Install the Eclipse IDE and import all of the Selenium dependencies into the project directory. (Users can also use alternative IDEs if they like.) Set the properties by stating the type of driver to be used, as well as the path to its location. Initialize the ChromeDriver’s object. This makes it easier to open the Chrome browser. Use the driver.get() method to get to a certain URL. Certain locators can also be used to locate specific web items. Refer to this extensive reference on Locators in Selenium to learn more about how to locate items in Selenium.