Search code examples
selenium-chromedriver

Can't get matching downloads of Chrome and chromedriver.exe


Same problem here: My Chrome Browser is: Version 132.0.6834.111 (Official Build) (64-bit) The latest version of chromdriver.exe available is: Version 132.0.6834.110 (Official Build) (64-bit)

But this one crashes, saying I am using the wrong version. I got the 110 from https://googlechromelabs.github.io/chrome-for-testing/#stable Looking through, releases, I can't see how to find : Chrome Version 132.0.6834.110 OR chromedriver.exe Version 132.0.6834.111

Can anyone help?


Solution

  • For windows:

    Check you have installed latest version of chrome browser

    • If not, install latest version of chrome download the latest(or appropriate) version of chromedriver from here Paste the chromedriver.exe file in <Install Dir>/Python27/Scripts Folder . The below code should work now:
    from selenium import webdriver
    driver = webdriver.Chrome()