Have ChromeDriver features been deprecated?
I had a piece of code that worked perfectly fine until today. public class TestSelenium { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver","chromedriver\\chromedriver.exe"); WebDriver driver = new ChromeDriver(); driver.get("https://google.com"); driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); driver.findElement(By.name("q")).sendKeys("hello world"); } } The above simple code trow the following error: Started ChromeDriver port=25456 version=26.0.1383.0 log=C:\Use................omedriver.log Exception in thread "main" org.openqa.selenium