Device Farm: Changing chromedriver binary causes chrome not reachable

0

Hi

Is there any documentation for updating chromedriver from the installed v2.38 version to any other from https://chromedriver.chromium.org/downloads.

I've placed this code in the install phase.

- curl -L "https://chromedriver.storage.googleapis.com/2.38/chromedriver_linux64.zip" -o /tmp/chromedriver_linux64_new.zip 2> /dev/null; - unzip /tmp/chromedriver_linux64_new.zip -d /tmp >/dev/null; - rm -rf $DEVICEFARM_CHROMEDRIVER_EXECUTABLE; - mv /tmp/chromedriver $DEVICEFARM_CHROMEDRIVER_EXECUTABLE; - chmod +x $DEVICEFARM_CHROMEDRIVER_EXECUTABLE;

Unfortunately when running with appium I get chrome not reachable. Using the stock chromedriver doesn't have this issue despite being the same version. ChromeDriver 2.38.552522 (437e6fbedfa8762dec75e2c5b3ddb86763dc9dcb)

I did the same version to debug why chrome not reachable was being reported.

Is there any guidance on how to update chromedriver?

Thanks

No Answers

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions