I have ussue when Sending Keys to some field
driver.findElement(By.xpath(\"//*[@id=\\\"login-main\\\"]/a\")).click();
Thread.sleep(1000);
driver.findElement(By.
The error says it all :
Exception in thread "main" org.openqa.selenium.WebDriverException: unknown error: call function result missing 'value
(Session info: chrome=65.0.3325.109)
(Driver info: chromedriver=2.33.506120 (e3e53437346286c0bc2d2dc9aa4915ba81d9023f),platform=Windows NT 10.0.16299 x86_64)
Your main issue is the version compatibility between the binaries you are using as follows :
Supports Chrome v60-62
Supports Chrome v65-66
So there is a clear mismatch between the ChromeDriver version (v2.33) and the Chrome Browser version (v65.0)
@Test
.As per your comment if you are unable to upgrade to ChromeDriver v2.36 you can adopt either of the following strategies :