When trying to call Sendkeys method in selenium webdriver it is displaying below error:
Exception in thread \"main\" org.openqa.selenium.WebDriverException:
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.146)
(Driver info: chromedriver=2.27.440174 (e97a722caafc2d3a8b807ee115bfb307f7d2cfd9),platform=Windows NT 6.1.7600 x86_64)
Your main issue is the version compatibility between the binaries you are using as follows :
Supports Chrome v54-56
Supports Chrome v65-66
So there is a clear mismatch between the ChromeDriver version (v2.27) and the Chrome Browser version (v65.0)
@Test
.