I have ussue when Sending Keys to some field
driver.findElement(By.xpath(\"//*[@id=\\\"login-main\\\"]/a\")).click();
Thread.sleep(1000);
driver.findElement(By.
So, not sure what route you use to manage your driver, but you need to pass the --chromedriver-executable parameter to your appium run. I'm assuming a new appium version or appium-chromdriver npm package will be released at some point, but until then, try the following:
If you start appium via the command line this is as simple as running:
appium --chromedriver-executable=/path/to/chromedriver.exe
(pointing at a 2.36 chromedriver executable)
If you start appium using an AppiumServiceBuilder instance, you need to add:
serviceBuilderInstance..withArgument((ServerArgument) () -> "--chromedriver-executable", chromeExecutablePath);
Hope this helps, it seems to be working for me!