Need to update chrome driver from ( https://chromedriver.chromium.org/downloads )
Then need to extract and connect to chromedriver.exe

	public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver","C:\\Users\\khandakerto\\Desktop\\chromedriver_new\\chromedriver.exe");
		WebDriver driver = new ChromeDriver();
		driver.get("https://www.bloomadmin.se/");
		System.out.println(driver.getTitle());
		driver.quit();
	}

By toihid

Leave a Reply