Use correct and latest chromedriver in Appium

Please use correct and latest chromedriver in Appium further release.

There are a lot of issues about chromedriver, like the links as below.

The root cause is from chromedriver itself, but chromedriver fixed it in the latest version 2.13.
Here is the issue link, https://code.google.com/p/chromedriver/issues/detail?id=845.

Appium 1.3.4 still uses the old chromedriver, so please use correct and latest chromedriver in the further release.
Here is the link to get chromedriver 2.13 version.
http://chromedriver.storage.googleapis.com/index.html?path=2.13/

Thanks
Derek

Hi @derek1106,

Thanks alot. The above suggestion helps solve ChromeDriver issues with Appium.

Regards,
Sujata

Yes, the chromedriver issue is resolved.
Please ensure Appium will invoke the correct and latest chromedriver in the further release, that will help a lot for customers.

In which Appium version we start to use the correct and latest chromedriver?
Appium 1.3.4 is using the old one.

Chromedriver is typically up-to-date at time of release. You can always update Chromedriver yourself by replacing the one in the Appium directories with the version of your choice.

Great to hear we update the chromedriver in the new release.

I found the path of chrome driver and updated. Now , it’s working fine. Thanks.

@Ravi-ratnakaram
Hi Can you please help me to give the path of chrome driver . I’m unable to launch and run the test in chrome browser successfully.

Thanks,
Siva

@sivashankar.st47 : I also faced this issue in appium 1.5.3 version. I did below to solve my problem and it worked for me.

  1. Download the latest version of chromedriver from https://sites.google.com/a/chromium.org/chromedriver/downloads
  2. Move the above chromedriver to /usr/local/bin location
  3. Then change permissions: chmod 7555 /usr/local/bin/chromedriver to make this executable.
  4. Then check the version. using chromedriver --version
  5. Then set the below capabilities.
    capabilities.setCapability(“chromedriverExecutable”, “/usr/local/bin/chromedriver”);

You can run appium as normal without problem.

The chromedriverExecutable allows you to specify your own chromedriver
executable thus bypassing the appium-chromedriver.

Thanks @SharmaSumit. Its working properly now.