Advertisement

Heroku: This version of ChromeDriver only supports Chrome version 100

 (Read 1098 times)

geni

  • Jr. Jucktioner
  • *
  • Posts: 32
I'm getting this error when I push git to heroku for my app

Code: [Select]
This version of ChromeDriver only supports Chrome version 100
2022-03-30T08:17:23.493719+00:00 app[worker.1]: Current browser version is 99.0.4844.84 with binary path /app/.apt/usr/bin/google-chrome

I have added the build packaes for chrome browser and chromedriver, seems like there's a version missing.

Admin

  • Administrator
  • Hero Member
  • *****
  • Posts: 1549
    • The Jucktion
You can configure the version of chromedriver on the heroku using the "CHROMEDRIVER_VERSION" environment variable.

You can pick the version suitable for the Chrome installation from here:
https://chromedriver.chromium.org/downloads

so for your browser version, ChromeDriver 99.0.4844.51 is needed. Just create the environment variable with the version name as the value and push changes again.